about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/compilers/pakcs/curry-base.nix
blob: c461d2caa93c3f65261d0a6c3a2d2daabb012ccb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ mkDerivation, base, Cabal, containers, directory, extra, filepath
, mtl, parsec, pretty, lib, time, transformers
}:
mkDerivation {
  pname = "curry-base";
  version = "1.1.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 = lib.licenses.bsd3;
}