mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 05:31:22 +00:00
16 lines
529 B
Nix
16 lines
529 B
Nix
{ cabal, binary, mtl, RepLib, transformers }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "unbound";
|
|
version = "0.4.3.1";
|
|
sha256 = "1xkp47y7yg8dl95gf4w3iwddc3yivrhcxj184cfhrx6a9rbsflpz";
|
|
buildDepends = [ binary 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 ];
|
|
};
|
|
})
|