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-06-06 10:08:25 +02:00
|
|
|
version = "0.5.3";
|
|
|
|
sha256 = "1kpd4qli6fclrr3i21kmdwbpa0la7ssi9pgagzclr3yj2ca2hsgw";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ mtl typeEquality ];
|
2011-09-09 22:45:04 +02:00
|
|
|
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
|
|
|
};
|
|
|
|
})
|