libasyncns: Add derivation

+20
+18
pkgs/development/libraries/libasyncns/default.nix
··· 1 + { stdenv, fetchurl }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "libasyncns-0.8"; 5 + 6 + src = fetchurl { 7 + url = "http://0pointer.de/lennart/projects/libasyncns/${name}.tar.gz"; 8 + sha256 = "0x5b6lcic4cd7q0bx00x93kvpyzl7n2abbgvqbrlzrfb8vknc6jg"; 9 + }; 10 + 11 + meta = with stdenv.lib; { 12 + homepage = http://0pointer.de/lennart/projects/libasyncns/; 13 + description = "a C library for Linux/Unix for executing name service queries asynchronously"; 14 + license = licenses.lgpl21; 15 + platforms = platforms.unix; 16 + maintainers = with maintainers; [ wkennington ]; 17 + }; 18 + }
+2
pkgs/top-level/all-packages.nix
··· 6279 6279 automake = automake112x; # fails with 13 and 14 6280 6280 }; 6281 6281 6282 + libasyncns = callPackage ../development/libraries/libasyncns { }; 6283 + 6282 6284 libatomic_ops = callPackage ../development/libraries/libatomic_ops {}; 6283 6285 6284 6286 libav = libav_11; # branch 11 is API-compatible with branch 10