2014-06-03 10:34:59 +01:00
|
|
|
{ cabal, attoparsec, binary, blazeBuilder, conduit, conduitExtra
|
|
|
|
, doctest, hspec, iproute, mtl, network, random, resourcet
|
2012-11-15 11:35:21 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "dns";
|
2014-06-03 10:34:59 +01:00
|
|
|
version = "1.3.0";
|
|
|
|
sha256 = "1zd639d69ha3g1yz7ssvwarwiwyi975ps4i5y8vrarcq2jnnsb6n";
|
2012-11-15 11:35:21 +00:00
|
|
|
buildDepends = [
|
2014-06-03 10:34:59 +01:00
|
|
|
attoparsec binary blazeBuilder conduit conduitExtra iproute mtl
|
|
|
|
network random resourcet
|
2012-11-15 11:35:21 +00:00
|
|
|
];
|
2013-07-25 09:29:22 +01:00
|
|
|
testDepends = [
|
2014-06-03 10:34:59 +01:00
|
|
|
attoparsec binary blazeBuilder conduit conduitExtra doctest hspec
|
|
|
|
iproute mtl network random resourcet
|
2013-07-25 09:29:22 +01:00
|
|
|
];
|
2013-10-26 17:33:09 +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;
|
|
|
|
};
|
|
|
|
})
|