nixpkgs/pkgs/development/libraries/haskell/RepLib/default.nix

16 lines
495 B
Nix
Raw Normal View History

{ cabal, mtl, typeEquality }:
cabal.mkDerivation (self: {
pname = "RepLib";
version = "0.5.2";
sha256 = "1wcxvl40wlnva2x7z13pm95485lwxbpy5di1mb1din3id8dprxfr";
buildDepends = [ mtl typeEquality ];
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;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})