2012-11-15 12:35:21 +01:00
|
|
|
{ cabal, attoparsec, attoparsecConduit, binary, blazeBuilder
|
2013-07-25 10:29:22 +02:00
|
|
|
, conduit, hspec, iproute, mtl, network, networkConduit, random
|
2012-11-15 12:35:21 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "dns";
|
2013-08-19 13:55:13 +02:00
|
|
|
version = "0.3.8";
|
|
|
|
sha256 = "1x2rfm89qpx7dpxr457i2wqmjry8r28f42j194131mfx4gc4mwdq";
|
2012-11-15 12:35:21 +01:00
|
|
|
buildDepends = [
|
|
|
|
attoparsec attoparsecConduit binary blazeBuilder conduit iproute
|
|
|
|
mtl network networkConduit random
|
|
|
|
];
|
2013-07-25 10:29:22 +02:00
|
|
|
testDepends = [
|
|
|
|
attoparsec attoparsecConduit binary blazeBuilder conduit hspec
|
|
|
|
iproute mtl network networkConduit random
|
|
|
|
];
|
2013-07-26 10:35:30 +02:00
|
|
|
doCheck = false;
|
2012-11-15 12:35:21 +01:00
|
|
|
meta = {
|
|
|
|
description = "DNS library in Haskell";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|