nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

oci-seccomp-bpf-hook: move to linuxPackages

zowoq ee0d559d c5dcb968

+5 -5
+3 -3
pkgs/applications/virtualization/oci-seccomp-bpf-hook/default.nix pkgs/os-specific/linux/oci-seccomp-bpf-hook/default.nix
··· 3 , fetchFromGitHub 4 , go-md2man 5 , installShellFiles 6 - , libseccomp 7 - , linuxPackages 8 , pkg-config 9 }: 10 11 buildGoModule rec { ··· 27 pkg-config 28 ]; 29 buildInputs = [ 30 libseccomp 31 - linuxPackages.bcc 32 ]; 33 34 buildPhase = ''
··· 3 , fetchFromGitHub 4 , go-md2man 5 , installShellFiles 6 , pkg-config 7 + , bcc 8 + , libseccomp 9 }: 10 11 buildGoModule rec { ··· 27 pkg-config 28 ]; 29 buildInputs = [ 30 + bcc 31 libseccomp 32 ]; 33 34 buildPhase = ''
+2 -2
pkgs/top-level/all-packages.nix
··· 17782 17783 netatop = callPackage ../os-specific/linux/netatop { }; 17784 17785 perf = callPackage ../os-specific/linux/kernel/perf.nix { }; 17786 17787 phc-intel = if stdenv.lib.versionAtLeast kernel.version "4.10" then callPackage ../os-specific/linux/phc-intel { } else null; ··· 24873 nudoku = callPackage ../games/nudoku { }; 24874 24875 nxengine-evo = callPackage ../games/nxengine-evo { }; 24876 - 24877 - oci-seccomp-bpf-hook = callPackage ../applications/virtualization/oci-seccomp-bpf-hook { }; 24878 24879 odamex = callPackage ../games/odamex { }; 24880
··· 17782 17783 netatop = callPackage ../os-specific/linux/netatop { }; 17784 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 + 17787 perf = callPackage ../os-specific/linux/kernel/perf.nix { }; 17788 17789 phc-intel = if stdenv.lib.versionAtLeast kernel.version "4.10" then callPackage ../os-specific/linux/phc-intel { } else null; ··· 24871 nudoku = callPackage ../games/nudoku { }; 24872 24873 nxengine-evo = callPackage ../games/nxengine-evo { }; 24874 24875 odamex = callPackage ../games/odamex { }; 24876