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