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

24 lines
697 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-08-19 11:55:13 +00:00
version = "0.3.8";
sha256 = "1x2rfm89qpx7dpxr457i2wqmjry8r28f42j194131mfx4gc4mwdq";
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
];
doCheck = false;
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;
};
})