1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 05:31:22 +00:00
nixpkgs/pkgs/development/libraries/haskell/unbound/default.nix
2014-05-14 15:02:29 +02:00

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 ];
};
})