nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 20.03 19 lines 541 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 pname = "pkgconf"; 5 version = "1.6.3"; 6 7 src = fetchurl { 8 url = "https://distfiles.dereferenced.org/${pname}/${pname}-${version}.tar.xz"; 9 sha256 = "04525vv0y849vvc2pi60g5wd9fjp1wbhra2lniifi82y1ldv7w31"; 10 }; 11 12 meta = with stdenv.lib; { 13 description = "Package compiler and linker metadata toolkit"; 14 homepage = https://git.dereferenced.org/pkgconf/pkgconf; 15 platforms = platforms.all; 16 license = licenses.isc; 17 maintainers = with maintainers; [ zaninime ]; 18 }; 19}