mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
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 {
|
||||
name = "capstone-${version}";
|
||||
|
@ -12,6 +12,10 @@ stdenv.mkDerivation rec {
|
|||
configurePhase = '' patchShebangs make.sh '';
|
||||
buildPhase = '' ./make.sh '';
|
||||
installPhase = '' env PREFIX=$out ./make.sh install '';
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkgconfig
|
||||
];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
|
|
Loading…
Reference in a new issue