capstone: fix pkgconfig file generation (#21897)
This commit is contained in:
parent
2ab883c9da
commit
eedd562f76
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, bash }:
|
{ stdenv, fetchurl, bash, pkgconfig }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "capstone-${version}";
|
name = "capstone-${version}";
|
||||||
@ -12,6 +12,10 @@ stdenv.mkDerivation rec {
|
|||||||
configurePhase = '' patchShebangs make.sh '';
|
configurePhase = '' patchShebangs make.sh '';
|
||||||
buildPhase = '' ./make.sh '';
|
buildPhase = '' ./make.sh '';
|
||||||
installPhase = '' env PREFIX=$out ./make.sh install '';
|
installPhase = '' env PREFIX=$out ./make.sh install '';
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
pkgconfig
|
||||||
|
];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user