nixpkgs/pkgs/development/libraries/haskell/dns/default.nix

23 lines
678 B
Nix
Raw Normal View History

2012-11-15 11:35:21 +00:00
{ cabal, attoparsec, attoparsecConduit, binary, blazeBuilder
2013-07-25 08:29:22 +00:00
, conduit, hspec, iproute, mtl, network, networkConduit, random
2012-11-15 11:35:21 +00:00
}:
cabal.mkDerivation (self: {
pname = "dns";
2013-07-25 08:29:22 +00:00
version = "0.3.7";
sha256 = "1wly3h36j9gjyx6p2vzand5019m6rs0qkcf1h4q61igks65xs674";
2012-11-15 11:35:21 +00:00
buildDepends = [
attoparsec attoparsecConduit binary blazeBuilder conduit iproute
mtl network networkConduit random
];
2013-07-25 08:29:22 +00:00
testDepends = [
attoparsec attoparsecConduit binary blazeBuilder conduit hspec
iproute mtl network networkConduit random
];
2012-11-15 11:35:21 +00:00
meta = {
description = "DNS library in Haskell";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})