nixpkgs/pkgs/development/libraries/haskell/Agda/default.nix
Andres Löh 7ad36d1940 Agda version bump to 2.2.8
svn path=/nixpkgs/trunk/; revision=24743
2010-11-17 16:00:33 +00:00

17 lines
524 B
Nix

{cabal, QuickCheck, binary, haskeline, haskellSrc, mtl, utf8String, xhtml, zlib,
happy, alex}:
cabal.mkDerivation (self : {
pname = "Agda";
version = "2.2.8";
sha256 = "06j2s7x3h5lanygd6mhhxkzjf4c0m8pw6c0s7gbmwlxqrkz9firg";
extraBuildInputs = [happy alex];
propagatedBuildInputs =
[QuickCheck binary haskeline haskellSrc mtl utf8String xhtml zlib];
meta = {
description = "A dependently typed functional language and proof assistant";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})