{ mkDerivation, base, containers, fasta, fetchurl, lens , optparse-applicative, pipes, pipes-text, split, text, text-show }: mkDerivation { pname = "blosum"; version = "0.1.1.4"; src = fetchurl { url = "http://example.org/"; sha256 = "abc"; }; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base containers fasta lens text text-show ]; executableHaskellDepends = [ base containers fasta optparse-applicative pipes pipes-text split text ]; homepage = "http://github.com/GregorySchwartz/blosum#readme"; description = "BLOSUM generator"; license = stdenv.lib.licenses.gpl2; }