nixpkgs/pkgs/development/compilers/pakcs/curry-base.nix
2021-01-25 18:31:47 +01:00

17 lines
497 B
Nix

{ mkDerivation, base, Cabal, containers, directory, extra, filepath
, mtl, parsec, pretty, lib, time, transformers
}:
mkDerivation {
pname = "curry-base";
version = "1.1.0";
src = ./.;
libraryHaskellDepends = [
base containers directory extra filepath mtl parsec pretty time
transformers
];
testHaskellDepends = [ base Cabal filepath mtl ];
homepage = "http://curry-language.org";
description = "Functions for manipulating Curry programs";
license = lib.licenses.bsd3;
}