2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, QuickCheck, utilityHt }:
|
2009-05-15 19:53:00 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2009-05-15 19:53:00 +01:00
|
|
|
pname = "non-negative";
|
2014-06-10 19:33:32 +01:00
|
|
|
version = "0.1.1";
|
|
|
|
sha256 = "163g3j3xrx1jkrbg2wnha3yyxyg1mn7kabmbpg82y3rbl3ihy1p7";
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ QuickCheck utilityHt ];
|
2014-06-10 19:33:32 +01:00
|
|
|
testDepends = [ QuickCheck utilityHt ];
|
2009-05-15 19:53:00 +01:00
|
|
|
meta = {
|
2011-08-10 00:00:20 +01:00
|
|
|
homepage = "http://code.haskell.org/~thielema/non-negative/";
|
2009-05-15 19:53:00 +01:00
|
|
|
description = "Non-negative numbers";
|
2011-08-10 00:00:20 +01:00
|
|
|
license = "GPL";
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-05-15 19:53:00 +01:00
|
|
|
};
|
|
|
|
})
|