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