2018-11-19 12:31:56 +00:00
|
|
|
{ stdenv, fetchgit, automake, autoconf, libtool }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "pkgconf-1.5.4";
|
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
url = "https://git.dereferenced.org/pkgconf/pkgconf.git";
|
|
|
|
rev = "74133eda31bc1ed5947b4a3a854001e320b6c1fe";
|
|
|
|
sha256 = "159fxbwm5shz8p95jp28wrjvinlhmp42dy60pqg34psjn41wq1q4";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ automake autoconf libtool ];
|
|
|
|
|
|
|
|
preConfigurePhases = ["autogenPhase"];
|
|
|
|
|
|
|
|
autogenPhase = ''
|
|
|
|
./autogen.sh
|
|
|
|
'';
|
|
|
|
|
2018-11-19 12:56:51 +00:00
|
|
|
meta = with stdenv.lib; {
|
2018-11-19 12:54:25 +00:00
|
|
|
description = "Package compiler and linker metadata toolkit";
|
|
|
|
homepage = https://git.dereferenced.org/pkgconf/pkgconf;
|
|
|
|
platforms = platforms.all;
|
|
|
|
license = licenses.isc;
|
2018-11-19 12:56:51 +00:00
|
|
|
maintainers = with maintainers; [ zaninime ];
|
2018-11-19 12:54:25 +00:00
|
|
|
};
|
2018-11-19 12:31:56 +00:00
|
|
|
}
|