6b0f1dab5c
- LambdaHack: updated to version 0.2.1 - OpenAL: updated to version 1.4.0.1 - cabal2nix: updated to version 1.29 - unbound: updated to version 0.4.0.1 svn path=/nixpkgs/trunk/; revision=33394
16 lines
514 B
Nix
16 lines
514 B
Nix
{ cabal, mtl, RepLib, transformers }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "unbound";
|
|
version = "0.4.0.1";
|
|
sha256 = "0zb029wji85b643iqf4cnkd9d68accrjxnk8422xs82zik2kn6zf";
|
|
buildDepends = [ mtl RepLib transformers ];
|
|
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 ];
|
|
};
|
|
})
|