libcap: add some key reverse-dependencies to passthru.tests

+26
+26
pkgs/os-specific/linux/libcap/default.nix
··· 1 { stdenv, lib, buildPackages, fetchurl, attr, runtimeShell 2 , usePam ? !isStatic, pam ? null 3 , isStatic ? stdenv.hostPlatform.isStatic 4 }: 5 6 assert usePam -> pam != null; ··· 56 mkdir -p "$pam/lib/security" 57 mv "$lib"/lib/security "$pam/lib" 58 ''; 59 60 meta = { 61 description = "Library for working with POSIX capabilities";
··· 1 { stdenv, lib, buildPackages, fetchurl, attr, runtimeShell 2 , usePam ? !isStatic, pam ? null 3 , isStatic ? stdenv.hostPlatform.isStatic 4 + 5 + # passthru.tests 6 + , bind 7 + , chrony 8 + , htop 9 + , libgcrypt 10 + , libvirt 11 + , ntp 12 + , qemu 13 + , squid 14 + , tor 15 + , uwsgi 16 }: 17 18 assert usePam -> pam != null; ··· 68 mkdir -p "$pam/lib/security" 69 mv "$lib"/lib/security "$pam/lib" 70 ''; 71 + 72 + passthru.tests = { 73 + inherit 74 + bind 75 + chrony 76 + htop 77 + libgcrypt 78 + libvirt 79 + ntp 80 + qemu 81 + squid 82 + tor 83 + uwsgi; 84 + }; 85 86 meta = { 87 description = "Library for working with POSIX capabilities";