packages feed

cabal2nix-2.17.0: test/golden-test-cases/blosum.nix.golden

{ mkDerivation, base, containers, fasta, lens, lib
, optparse-applicative, pipes, pipes-text, split, 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 = lib.licenses.gpl2Only;
}