2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, syb }:
|
2011-09-09 21:43:04 +02:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "instant-generics";
|
2012-11-20 13:58:23 +01:00
|
|
|
version = "0.3.7";
|
|
|
|
sha256 = "0kkfx009ij3pwga7x18vr8p0ffhahlp8sb6ykzfh8rhcqd4ryzyv";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ syb ];
|
2011-09-09 21:43:04 +02: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 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-09-09 21:43:04 +02:00
|
|
|
};
|
|
|
|
})
|