6e56feca1d
- RepLib: updated to version 0.5.2 - http-enumerator: updated to version 0.7.3.1 - http-types: updated to version 0.6.10 - leksah-server: updated to version 0.12.0.5 - test-framework-quickcheck2: updated to version 0.2.12.1 - unbound: updated to version 0.4 - yesod: updated to version 0.10.2 svn path=/nixpkgs/trunk/; revision=33144
20 lines
581 B
Nix
20 lines
581 B
Nix
{ cabal, mtl, RepLib, transformers }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "unbound";
|
|
version = "0.4";
|
|
sha256 = "0s4aybbxz5qvkf09wn65qavw10hk0rsyyc2d0ydr02rzz10vd270";
|
|
buildDepends = [ mtl RepLib transformers ];
|
|
noHaddock = true;
|
|
meta = {
|
|
homepage = "http://code.google.com/p/replib/";
|
|
description = "Generic support for programming with names and binders";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|