nixpkgs/pkgs/development/tools/misc/pkgconf/default.nix
R. RyanTM be23a4397a pkgconf: 1.6.1 -> 1.6.3
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/pkgconf/versions
2019-07-15 22:03:27 -07:00

20 lines
541 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "pkgconf";
version = "1.6.3";
src = fetchurl {
url = "https://distfiles.dereferenced.org/${pname}/${pname}-${version}.tar.xz";
sha256 = "04525vv0y849vvc2pi60g5wd9fjp1wbhra2lniifi82y1ldv7w31";
};
meta = with stdenv.lib; {
description = "Package compiler and linker metadata toolkit";
homepage = https://git.dereferenced.org/pkgconf/pkgconf;
platforms = platforms.all;
license = licenses.isc;
maintainers = with maintainers; [ zaninime ];
};
}