nixpkgs/pkgs/development/compilers/epic/default.nix
Andres Löh 742e6e9e0b Updated epic.
svn path=/nixpkgs/trunk/; revision=26728
2011-04-07 07:47:22 +00:00

16 lines
435 B
Nix

{cabal, mtl, happy, gmp, boehmgc}:
cabal.mkDerivation (self : {
pname = "epic";
version = "0.1.10";
sha256 = "0iaq0mswf370jk4r2xyby8qa5ihcydnbkr478p35x2i56axp60ji";
propagatedBuildInputs = [mtl];
extraBuildInputs = [happy gmp boehmgc];
noHaddock = true;
meta = {
description = "An experimental language with full dependent types";
license = "BSD";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})