b5c1deca8a
He prefers to contribute to his own nixpkgs fork triton. Since he is still marked as maintainer in many packages this leaves the wrong impression he still maintains those.
18 lines
506 B
Nix
18 lines
506 B
Nix
{ 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;
|
|
};
|
|
}
|