tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
oci-seccomp-bpf-hook: move to linuxPackages
zowoq
5 years ago
ee0d559d
c5dcb968
+5
-5
2 changed files
expand all
collapse all
unified
split
pkgs
os-specific
linux
oci-seccomp-bpf-hook
default.nix
top-level
all-packages.nix
+3
-3
pkgs/applications/virtualization/oci-seccomp-bpf-hook/default.nix
pkgs/os-specific/linux/oci-seccomp-bpf-hook/default.nix
···
3
3
, fetchFromGitHub
4
4
, go-md2man
5
5
, installShellFiles
6
6
-
, libseccomp
7
7
-
, linuxPackages
8
6
, pkg-config
7
7
+
, bcc
8
8
+
, libseccomp
9
9
}:
10
10
11
11
buildGoModule rec {
···
27
27
pkg-config
28
28
];
29
29
buildInputs = [
30
30
+
bcc
30
31
libseccomp
31
31
-
linuxPackages.bcc
32
32
];
33
33
34
34
buildPhase = ''
+2
-2
pkgs/top-level/all-packages.nix
···
17782
17782
17783
17783
netatop = callPackage ../os-specific/linux/netatop { };
17784
17784
17785
17785
+
oci-seccomp-bpf-hook = if stdenv.lib.versionAtLeast kernel.version "5.4" then callPackage ../os-specific/linux/oci-seccomp-bpf-hook { } else null;
17786
17786
+
17785
17787
perf = callPackage ../os-specific/linux/kernel/perf.nix { };
17786
17788
17787
17789
phc-intel = if stdenv.lib.versionAtLeast kernel.version "4.10" then callPackage ../os-specific/linux/phc-intel { } else null;
···
24871
24873
nudoku = callPackage ../games/nudoku { };
24872
24874
24873
24875
nxengine-evo = callPackage ../games/nxengine-evo { };
24874
24874
-
24875
24875
-
oci-seccomp-bpf-hook = callPackage ../applications/virtualization/oci-seccomp-bpf-hook { };
24876
24876
24877
24877
odamex = callPackage ../games/odamex { };
24878
24878