about summary refs log tree commit diff
path: root/pkgs/development/compilers/pakcs/curry-frontend.nix
blob: acf658024b010f7f2ed23d1794c7d3c35f8f8a8d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ mkDerivation, base, binary, bytestring, Cabal, containers
, directory, extra, file-embed, filepath, lib, mtl, network-uri
, parsec, pretty, process, set-extra, template-haskell, time
, transformers
}:
mkDerivation {
  pname = "curry-frontend";
  version = "2.1.0";
  src = ./.;
  isLibrary = true;
  isExecutable = true;
  enableSeparateDataOutput = true;
  libraryHaskellDepends = [
    base binary bytestring containers directory extra file-embed
    filepath mtl network-uri parsec pretty process set-extra
    template-haskell time transformers
  ];
  executableHaskellDepends = [ base ];
  testHaskellDepends = [
    base bytestring Cabal containers directory extra file-embed
    filepath mtl network-uri pretty process set-extra template-haskell
    transformers
  ];
  homepage = "http://curry-language.org";
  description = "Compile the functional logic language Curry to several intermediate formats";
  license = lib.licenses.bsd3;
  mainProgram = "curry-frontend";
}