pkgs/misc: pkgconfig -> pkg-config
This commit is contained in:
committed by
Jonathan Ringer
parent
5fffcef915
commit
fce00d15c2
@@ -1,5 +1,5 @@
|
||||
{ pkgName, version, pkgSha256 }:
|
||||
{ lib, stdenv, fetchurl, cmake, pkgconfig, buildInputs, drvParams ? {} }:
|
||||
{ lib, stdenv, fetchurl, cmake, pkg-config, buildInputs, drvParams ? {} }:
|
||||
let name = "${pkgName}-${version}";
|
||||
in stdenv.mkDerivation ({
|
||||
inherit name buildInputs;
|
||||
@@ -7,7 +7,7 @@ in stdenv.mkDerivation ({
|
||||
url = "mirror://sourceforge/cdemu/${name}.tar.bz2";
|
||||
sha256 = pkgSha256;
|
||||
};
|
||||
nativeBuildInputs = [ pkgconfig cmake ];
|
||||
nativeBuildInputs = [ pkg-config cmake ];
|
||||
setSourceRoot = ''
|
||||
mkdir build
|
||||
cd build
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ callPackage, gobject-introspection, cmake, pkgconfig
|
||||
{ callPackage, gobject-introspection, cmake, pkg-config
|
||||
, glib, libsndfile, zlib, bzip2, lzma, libsamplerate, intltool
|
||||
, pcre, util-linux, libselinux, libsepol }:
|
||||
|
||||
@@ -12,7 +12,7 @@ in callPackage pkg {
|
||||
drvParams = {
|
||||
PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_GIRDIR = "${placeholder "out"}/share/gir-1.0";
|
||||
PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_TYPELIBDIR = "${placeholder "out"}/lib/girepository-1.0";
|
||||
nativeBuildInputs = [ cmake gobject-introspection pkgconfig ];
|
||||
nativeBuildInputs = [ cmake gobject-introspection pkg-config ];
|
||||
propagatedBuildInputs = [ pcre util-linux libselinux libsepol ];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user