pakcs: 1.14.0 -> 2.0.2

This commit is contained in:
gnidorah
2018-07-22 18:49:29 +03:00
parent 27af1633a4
commit 0186ec7329
5 changed files with 88 additions and 155 deletions
@@ -0,0 +1,16 @@
{ mkDerivation, base, Cabal, containers, directory, extra, filepath
, mtl, parsec, pretty, stdenv, time, transformers
}:
mkDerivation {
pname = "curry-base";
version = "1.0.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 = stdenv.lib.licenses.bsd3;
}