2018-07-22 08:07:29 -07:00
|
|
|
{ mkDerivation, base, Cabal, containers, directory, extra, filepath
|
2021-01-25 00:26:54 -08:00
|
|
|
, mtl, parsec, pretty, lib, time, transformers
|
2018-07-22 08:07:29 -07:00
|
|
|
}:
|
|
|
|
mkDerivation {
|
|
|
|
pname = "curry-base";
|
2019-11-03 23:31:51 -08:00
|
|
|
version = "1.1.0";
|
2018-07-22 08:07:29 -07: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 03:25:31 -08:00
|
|
|
license = lib.licenses.bsd3;
|
2018-07-22 08:07:29 -07:00
|
|
|
}
|