Merge pull request #50771 from zaninime/pkgconf

pkgconf: init at 1.5.4
This commit is contained in:
Jan Tojnar
2018-11-20 17:15:36 +01:00
committed by GitHub
3 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "pkgconf-1.5.4";
src = fetchurl {
url = "https://distfiles.dereferenced.org/pkgconf/${name}.tar.xz";
sha256 = "0r26qmij9lxpz183na3dxj6lamcma94cjhasy19fya44w2j68n4w";
};
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 ];
};
}