2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, syb }:
|
2011-09-09 20:43:04 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "instant-generics";
|
2012-11-20 12:58:23 +00:00
|
|
|
version = "0.3.7";
|
|
|
|
sha256 = "0kkfx009ij3pwga7x18vr8p0ffhahlp8sb6ykzfh8rhcqd4ryzyv";
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ syb ];
|
2011-09-09 20:43:04 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/InstantGenerics";
|
|
|
|
description = "Generic programming library with a sum of products view";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-09-09 20:43:04 +01:00
|
|
|
};
|
|
|
|
})
|