Add pkgconf
This commit is contained in:
parent
b53a60087d
commit
1ada6857e6
28
pkgs/development/tools/misc/pkgconf/default.nix
Normal file
28
pkgs/development/tools/misc/pkgconf/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ stdenv, fetchgit, automake, autoconf, libtool }:
|
||||
|
||||
# with stdenv.lib;
|
||||
|
||||
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
|
||||
'';
|
||||
|
||||
#meta = {
|
||||
# description = "TODO";
|
||||
# homepage = "TODO";
|
||||
# platforms = "TODO";
|
||||
# license = "TODO";
|
||||
#};
|
||||
}
|
@ -8801,9 +8801,12 @@ with pkgs;
|
||||
|
||||
pmccabe = callPackage ../development/tools/misc/pmccabe { };
|
||||
|
||||
pkgconf = callPackage ../development/tools/misc/pkgconf {};
|
||||
|
||||
pkgconfig = callPackage ../development/tools/misc/pkgconfig {
|
||||
fetchurl = fetchurlBoot;
|
||||
};
|
||||
|
||||
pkgconfigUpstream = lowPrio (pkgconfig.override { vanilla = true; });
|
||||
|
||||
postiats-utilities = callPackage ../development/tools/postiats-utilities {};
|
||||
|
Loading…
x
Reference in New Issue
Block a user