Skip to content

Commit

Permalink
libseccomp: move gpref from buildInputs to nativeBuildInputs
Browse files Browse the repository at this point in the history
  • Loading branch information
kampka committed Aug 31, 2020
1 parent 5aef482 commit 8555d14
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkgs/development/libraries/libseccomp/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, getopt, makeWrapper, utillinux, gperf }:
{ stdenv, fetchurl, getopt, utillinux, gperf }:

stdenv.mkDerivation rec {
pname = "libseccomp";
Expand All @@ -11,7 +11,8 @@ stdenv.mkDerivation rec {

outputs = [ "out" "lib" "dev" "man" ];

buildInputs = [ getopt makeWrapper gperf ];
nativeBuildInputs = [ gperf ];
buildInputs = [ getopt ];

patchPhase = ''
patchShebangs .
Expand Down

0 comments on commit 8555d14

Please sign in to comment.