mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 21:33:03 +03:00
libseccomp: make tests run, but dependency cycle
This commit is contained in:
parent
cec9b2635b
commit
0b67d69c13
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, getopt, makeWrapper }:
|
{ stdenv, fetchurl, getopt, makeWrapper, utillinux }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "libseccomp-${version}";
|
name = "libseccomp-${version}";
|
||||||
@ -17,6 +17,9 @@ stdenv.mkDerivation rec {
|
|||||||
patchShebangs .
|
patchShebangs .
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
checkInputs = [ utillinux ];
|
||||||
|
doCheck = false; # dependency cycle
|
||||||
|
|
||||||
# Hack to ensure that patchelf --shrink-rpath get rids of a $TMPDIR reference.
|
# Hack to ensure that patchelf --shrink-rpath get rids of a $TMPDIR reference.
|
||||||
preFixup = "rm -rfv src";
|
preFixup = "rm -rfv src";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user