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,24 @@
{ mkDerivation, base, Cabal, containers, curry-base, directory
, extra, filepath, mtl, network-uri, pretty, process, set-extra
, stdenv, transformers
}:
mkDerivation {
pname = "curry-frontend";
version = "1.0.2";
src = ./.;
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
base containers curry-base directory extra filepath mtl network-uri
pretty process set-extra transformers
];
executableHaskellDepends = [
base containers curry-base directory extra filepath mtl network-uri
pretty process set-extra transformers
];
testHaskellDepends = [ base Cabal curry-base filepath ];
homepage = "http://curry-language.org";
description = "Compile the functional logic language Curry to several intermediate formats";
license = stdenv.lib.licenses.bsd3;
}