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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
981 B
Nix
Raw Normal View History

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