2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, binary, mtl, parsec }:
|
2009-05-13 20:02:23 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2009-05-13 20:02:23 +01:00
|
|
|
pname = "ivor";
|
2011-08-07 23:02:17 +01:00
|
|
|
version = "0.1.14.1";
|
|
|
|
sha256 = "0r9ykfkxpwsrhsvv691r361pf79a7y511hxy2mvd6ysz1441mych";
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ binary mtl parsec ];
|
2009-05-13 20:02:23 +01:00
|
|
|
meta = {
|
2011-08-07 23:02:17 +01:00
|
|
|
homepage = "http://www.dcs.st-and.ac.uk/~eb/Ivor/";
|
2009-05-13 20:02:23 +01:00
|
|
|
description = "Theorem proving library based on dependent type theory";
|
2011-08-07 23:02:17 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 10:54:50 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-05-13 20:02:23 +01:00
|
|
|
};
|
2010-09-29 20:24:29 +01:00
|
|
|
})
|