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