3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
16 lines
507 B
Nix
16 lines
507 B
Nix
{ cabal, syb }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "instant-generics";
|
|
version = "0.3.7";
|
|
sha256 = "0kkfx009ij3pwga7x18vr8p0ffhahlp8sb6ykzfh8rhcqd4ryzyv";
|
|
buildDepends = [ syb ];
|
|
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;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|