2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, mtl, typeEquality }:
|
2011-09-09 22:45:04 +02:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "RepLib";
|
2012-03-16 10:47:31 +01:00
|
|
|
version = "0.5.2";
|
|
|
|
sha256 = "1wcxvl40wlnva2x7z13pm95485lwxbpy5di1mb1din3id8dprxfr";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ mtl typeEquality ];
|
2011-09-09 22:45:04 +02:00
|
|
|
noHaddock = true;
|
|
|
|
meta = {
|
|
|
|
homepage = "http://code.google.com/p/replib/";
|
|
|
|
description = "Generic programming library with representation types";
|
|
|
|
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 22:45:04 +02:00
|
|
|
};
|
|
|
|
})
|