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

27 lines
959 B
Nix
Raw Normal View History

2019-11-04 07:31:51 +00:00
{ mkDerivation, base, bytestring, Cabal, containers, curry-base
, directory, extra, file-embed, filepath, mtl, network-uri, pretty
, process, set-extra, lib, template-haskell, transformers
2018-07-22 15:07:29 +00:00
}:
mkDerivation {
pname = "curry-frontend";
2019-11-04 07:31:51 +00:00
version = "1.0.4";
2018-07-22 15:07:29 +00:00
src = ./.;
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
2019-11-04 07:31:51 +00:00
base bytestring containers curry-base directory extra file-embed
filepath mtl network-uri pretty process set-extra template-haskell
transformers
2018-07-22 15:07:29 +00:00
];
executableHaskellDepends = [
2019-11-04 07:31:51 +00:00
base bytestring containers curry-base directory extra file-embed
filepath mtl network-uri pretty process set-extra template-haskell
transformers
2018-07-22 15:07:29 +00:00
];
testHaskellDepends = [ base Cabal curry-base filepath ];
homepage = "http://curry-language.org";
description = "Compile the functional logic language Curry to several intermediate formats";
license = lib.licenses.bsd3;
2018-07-22 15:07:29 +00:00
}