2012-02-16 18:05:41 +04:00
|
|
|
{ cabal, adns, network }:
|
2011-07-20 22:38:47 +04:00
|
|
|
|
2011-08-10 03:00:20 +04:00
|
|
|
cabal.mkDerivation (self: {
|
2011-07-20 22:38:47 +04:00
|
|
|
pname = "hsdns";
|
2013-02-13 02:07:35 +04:00
|
|
|
version = "1.6";
|
|
|
|
sha256 = "1vf3crkhs7z572bqdf7p2hfcqkjxvnyg0w0cf8b7kyfxzn8bj3fa";
|
2012-02-16 18:05:41 +04:00
|
|
|
buildDepends = [ network ];
|
2011-08-10 03:00:20 +04:00
|
|
|
extraLibraries = [ adns ];
|
|
|
|
noHaddock = true;
|
2011-07-20 22:38:47 +04:00
|
|
|
meta = {
|
2013-02-13 02:07:35 +04:00
|
|
|
homepage = "http://github.com/peti/hsdns";
|
2011-08-05 22:02:00 +04:00
|
|
|
description = "Asynchronous DNS Resolver";
|
2013-02-13 02:07:35 +04:00
|
|
|
license = self.stdenv.lib.licenses.gpl3;
|
2011-08-09 11:44:28 +04:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-09-10 20:28:02 +04:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-07-20 22:38:47 +04:00
|
|
|
};
|
|
|
|
})
|