Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / compilers / pakcs / curry-base.nix
blobc461d2caa93c3f65261d0a6c3a2d2daabb012ccb
1 { mkDerivation, base, Cabal, containers, directory, extra, filepath
2 , mtl, parsec, pretty, lib, time, transformers
3 }:
4 mkDerivation {
5   pname = "curry-base";
6   version = "1.1.0";
7   src = ./.;
8   libraryHaskellDepends = [
9     base containers directory extra filepath mtl parsec pretty time
10     transformers
11   ];
12   testHaskellDepends = [ base Cabal filepath mtl ];
13   homepage = "http://curry-language.org";
14   description = "Functions for manipulating Curry programs";
15   license = lib.licenses.bsd3;