nixpkgs/pkgs/development/tools/misc/pkgconf/default.nix

29 lines
671 B
Nix
Raw Normal View History

2018-11-19 13:31:56 +01:00
{ stdenv, fetchgit, automake, autoconf, libtool }:
2018-11-19 13:54:25 +01:00
with stdenv.lib;
2018-11-19 13:31:56 +01:00
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 13:54:25 +01:00
meta = {
description = "Package compiler and linker metadata toolkit";
homepage = https://git.dereferenced.org/pkgconf/pkgconf;
platforms = platforms.all;
license = licenses.isc;
};
2018-11-19 13:31:56 +01:00
}