mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
libasyncns: Add derivation
This commit is contained in:
parent
232b71c6e8
commit
dbcbb2dbe1
18
pkgs/development/libraries/libasyncns/default.nix
Normal file
18
pkgs/development/libraries/libasyncns/default.nix
Normal file
@ -0,0 +1,18 @@
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libasyncns-0.8";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://0pointer.de/lennart/projects/libasyncns/${name}.tar.gz";
|
||||
sha256 = "0x5b6lcic4cd7q0bx00x93kvpyzl7n2abbgvqbrlzrfb8vknc6jg";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://0pointer.de/lennart/projects/libasyncns/;
|
||||
description = "a C library for Linux/Unix for executing name service queries asynchronously";
|
||||
license = licenses.lgpl21;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ wkennington ];
|
||||
};
|
||||
}
|
@ -6279,6 +6279,8 @@ let
|
||||
automake = automake112x; # fails with 13 and 14
|
||||
};
|
||||
|
||||
libasyncns = callPackage ../development/libraries/libasyncns { };
|
||||
|
||||
libatomic_ops = callPackage ../development/libraries/libatomic_ops {};
|
||||
|
||||
libav = libav_11; # branch 11 is API-compatible with branch 10
|
||||
|
Loading…
Reference in New Issue
Block a user