{ mkDerivation, base, containers, fasta, lens, optparse-applicative
, pipes, pipes-text, split, stdenv, text, text-show
}:
mkDerivation {
  pname = "blosum";
  version = "0.1.1.4";
  sha256 = "deadbeef";
  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;
}