3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/haskell/dns/default.nix

25 lines
715 B
Nix
Raw Normal View History

2012-11-15 11:35:21 +00:00
{ cabal, attoparsec, attoparsecConduit, binary, blazeBuilder
2013-09-16 09:50:04 +01:00
, conduit, doctest, hspec, iproute, mtl, network, networkConduit
, random
2012-11-15 11:35:21 +00:00
}:
cabal.mkDerivation (self: {
pname = "dns";
2013-09-16 09:50:04 +01:00
version = "1.0.0";
sha256 = "16h7c332qdj77dw8kvrdn1jzhzsnrcybbbm5x7pxvgpnn0wzz8si";
2012-11-15 11:35:21 +00:00
buildDepends = [
attoparsec attoparsecConduit binary blazeBuilder conduit iproute
mtl network networkConduit random
];
2013-07-25 09:29:22 +01:00
testDepends = [
2013-09-16 09:50:04 +01:00
attoparsec attoparsecConduit binary blazeBuilder conduit doctest
hspec iproute mtl network networkConduit random
2013-07-25 09:29:22 +01:00
];
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;
};
})