2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, mtl, typeEquality }:
|
2011-09-09 20:45:04 +00:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "RepLib";
|
2014-05-09 22:17:59 +00:00
|
|
|
version = "0.5.3.3";
|
|
|
|
sha256 = "1772r6rfajcn622dxwy9z1bvv53l5xj6acbcv8n9p7h01fs52mpr";
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ mtl typeEquality ];
|
2011-09-09 20:45:04 +00: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;
|
2013-05-10 22:36:36 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-09-09 20:45:04 +00:00
|
|
|
};
|
|
|
|
})
|