nixpkgs/pkgs/development/compilers/pakcs/curry-base.nix

17 lines
497 B
Nix
Raw Normal View History

2018-07-22 16:07:29 +01:00
{ mkDerivation, base, Cabal, containers, directory, extra, filepath
, mtl, parsec, pretty, lib, time, transformers
2018-07-22 16:07:29 +01:00
}:
mkDerivation {
pname = "curry-base";
2019-11-04 07:31:51 +00:00
version = "1.1.0";
2018-07-22 16:07:29 +01:00
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;
2018-07-22 16:07:29 +01:00
}