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-09-13 14:44:19 +02:00
|
|
|
version = "0.3.6";
|
|
|
|
sha256 = "0rwxj30p4s8imwfsrrrb26dvxax74cr77yzrm5s9yj7hc7hr0c5p";
|
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
|
|
|
};
|
|
|
|
})
|