1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/libraries/haskell/dns/default.nix

25 lines
719 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";
2014-02-21 22:33:33 +00:00
version = "1.2.0";
sha256 = "1pzwvb1qycjw6qw34xhd4ap9jl0cc79d3i09b23bg0vqcz80vmpr";
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
];
testTarget = "spec";
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;
};
})