nixpkgs/pkgs/development/libraries/haskell/ivor/default.nix
Andres Löh 9d5f981913 Updated the Idris compiler.
svn path=/nixpkgs/trunk/; revision=23991
2010-09-29 19:24:29 +00:00

15 lines
399 B
Nix

{cabal, mtl, parsec, binary}:
cabal.mkDerivation (self : {
pname = "ivor";
version = "0.1.12";
sha256 = "77f17df646afbe5199d4ab0291515013ad1bda471b2690512f752b752a2905f5";
propagatedBuildInputs = [mtl parsec binary];
meta = {
description = "Theorem proving library based on dependent type theory";
license = "BSD";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})