Added a nix expression for GNU ADNS. The version-specific files merely
forward the appropriate hash value to the generic driver found in default.nix. svn path=/nixpkgs/trunk/; revision=12153
This commit is contained in:
parent
f8465d0d48
commit
fee96dabb7
9
pkgs/development/libraries/adns/1.1.nix
Normal file
9
pkgs/development/libraries/adns/1.1.nix
Normal file
@ -0,0 +1,9 @@
|
||||
{ stdenv, fetchurl, version, static }:
|
||||
|
||||
assert version == "1.1";
|
||||
|
||||
import ./default.nix
|
||||
{
|
||||
inherit stdenv fetchurl static version;
|
||||
versionHash = "02plci50c7svbq15284z40c5aglydzh2zp68dj4lnigaxr6vm5vn";
|
||||
}
|
9
pkgs/development/libraries/adns/1.2.nix
Normal file
9
pkgs/development/libraries/adns/1.2.nix
Normal file
@ -0,0 +1,9 @@
|
||||
{ stdenv, fetchurl, version, static }:
|
||||
|
||||
assert version == "1.2";
|
||||
|
||||
import ./default.nix
|
||||
{
|
||||
inherit stdenv fetchurl static version;
|
||||
versionHash = "0jn03hz6q4r6x40cxc94n38mxxj45f73xqisi0sh7zmvixh3qhi2";
|
||||
}
|
9
pkgs/development/libraries/adns/1.3.nix
Normal file
9
pkgs/development/libraries/adns/1.3.nix
Normal file
@ -0,0 +1,9 @@
|
||||
{ stdenv, fetchurl, version, static }:
|
||||
|
||||
assert version == "1.3";
|
||||
|
||||
import ./default.nix
|
||||
{
|
||||
inherit stdenv fetchurl static version;
|
||||
versionHash = "05hd7qspvlsac9bqzx86r5a1wv7x1zdmqx6pi3ddk094m0n4bqn6";
|
||||
}
|
9
pkgs/development/libraries/adns/1.4.nix
Normal file
9
pkgs/development/libraries/adns/1.4.nix
Normal file
@ -0,0 +1,9 @@
|
||||
{ stdenv, fetchurl, version, static }:
|
||||
|
||||
assert version == "1.4";
|
||||
|
||||
import ./default.nix
|
||||
{
|
||||
inherit stdenv fetchurl static version;
|
||||
versionHash = "1zm99i9fd5gfijd144ajngn6x73563355im79sqdi98pj6ir4yvi";
|
||||
}
|
24
pkgs/development/libraries/adns/default.nix
Normal file
24
pkgs/development/libraries/adns/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, fetchurl, version, versionHash, static }:
|
||||
|
||||
stdenv.mkDerivation
|
||||
{
|
||||
name = "adns-${version}";
|
||||
meta =
|
||||
{
|
||||
homepage = "http://www.chiark.greenend.org.uk/~ian/adns/";
|
||||
description = "Asynchronous DNS Resolver Library";
|
||||
license = "LGPL-v2";
|
||||
};
|
||||
src = fetchurl
|
||||
{
|
||||
url = "ftp://ftp.chiark.greenend.org.uk/users/ian/adns/adns-${version}.tar.gz";
|
||||
sha256 = "${versionHash}";
|
||||
};
|
||||
configureFlags = if static then "--disable-dynamic" else "--enable-dynamic";
|
||||
CPPFLAGS = "-DNDEBUG";
|
||||
CFLAGS = "-O3";
|
||||
doCheck = 1;
|
||||
|
||||
# adns doesn't understand the automatic --disable-shared from the Cygwin stdenv.
|
||||
cygwinConfigureEnableShared = true;
|
||||
}
|
Loading…
Reference in New Issue
Block a user