1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/haskell/dns/default.nix
2013-07-26 19:40:47 +02:00

23 lines
678 B
Nix

{ cabal, attoparsec, attoparsecConduit, binary, blazeBuilder
, conduit, hspec, iproute, mtl, network, networkConduit, random
}:
cabal.mkDerivation (self: {
pname = "dns";
version = "0.3.7";
sha256 = "1wly3h36j9gjyx6p2vzand5019m6rs0qkcf1h4q61igks65xs674";
buildDepends = [
attoparsec attoparsecConduit binary blazeBuilder conduit iproute
mtl network networkConduit random
];
testDepends = [
attoparsec attoparsecConduit binary blazeBuilder conduit hspec
iproute mtl network networkConduit random
];
meta = {
description = "DNS library in Haskell";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})