Skip to content

Commit

Permalink
capstone: fix pkgconfig file generation (#21897)
Browse files Browse the repository at this point in the history
  • Loading branch information
joepie91 authored and zimbatm committed Jan 14, 2017
1 parent 2ab883c commit eedd562
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pkgs/development/libraries/capstone/default.nix
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, bash }:
{ stdenv, fetchurl, bash, pkgconfig }:

stdenv.mkDerivation rec {
name = "capstone-${version}";
Expand All @@ -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;

Expand Down

0 comments on commit eedd562

Please sign in to comment.