2018-07-22 16:07:29 +01:00
|
|
|
{ mkDerivation, base, Cabal, containers, directory, extra, filepath
|
2021-01-25 08:26:54 +00:00
|
|
|
, 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";
|
2021-01-22 11:25:31 +00:00
|
|
|
license = lib.licenses.bsd3;
|
2018-07-22 16:07:29 +01:00
|
|
|
}
|