summary refs log tree commit diff
path: root/pkgs/development/libraries/libseccomp/default.nix
diff options
context:
space:
mode:
authorJan Malakhovski <oxij@oxij.org>2018-08-10 00:27:39 +0000
committerJan Malakhovski <oxij@oxij.org>2018-08-11 09:35:34 +0000
commit0b67d69c1310bba545ed1f520461805862c11b25 (patch)
treef783d0da72d8aca50e21ef4519316166af190913 /pkgs/development/libraries/libseccomp/default.nix
parentcec9b2635b57de7d2ca1e8c07acb3ee797a37159 (diff)
downloadnixpkgs-0b67d69c1310bba545ed1f520461805862c11b25.tar
nixpkgs-0b67d69c1310bba545ed1f520461805862c11b25.tar.gz
nixpkgs-0b67d69c1310bba545ed1f520461805862c11b25.tar.bz2
nixpkgs-0b67d69c1310bba545ed1f520461805862c11b25.tar.lz
nixpkgs-0b67d69c1310bba545ed1f520461805862c11b25.tar.xz
nixpkgs-0b67d69c1310bba545ed1f520461805862c11b25.tar.zst
nixpkgs-0b67d69c1310bba545ed1f520461805862c11b25.zip
libseccomp: make tests run, but dependency cycle
Diffstat (limited to 'pkgs/development/libraries/libseccomp/default.nix')
-rw-r--r--pkgs/development/libraries/libseccomp/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/libraries/libseccomp/default.nix b/pkgs/development/libraries/libseccomp/default.nix
index e0c77a0cf35..c8d9e21366d 100644
--- a/pkgs/development/libraries/libseccomp/default.nix
+++ b/pkgs/development/libraries/libseccomp/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, getopt, makeWrapper }:
+{ stdenv, fetchurl, getopt, makeWrapper, utillinux }:
 
 stdenv.mkDerivation rec {
   name = "libseccomp-${version}";
@@ -17,6 +17,9 @@ stdenv.mkDerivation rec {
     patchShebangs .
   '';
 
+  checkInputs = [ utillinux ];
+  doCheck = false; # dependency cycle
+
   # Hack to ensure that patchelf --shrink-rpath get rids of a $TMPDIR reference.
   preFixup = "rm -rfv src";