summary refs log tree commit diff
path: root/pkgs/development/compilers/pakcs/curry-base.nix
blob: b34a2146383c23b0ca7c08f25d4b2d9b666a5d3e (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, stdenv, 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 = stdenv.lib.licenses.bsd3;
}