diff options
author | makefu <github@syntax-fehler.de> | 2021-06-05 14:59:56 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2021-06-05 14:59:56 +0200 |
commit | ced3b0f76e74023c1ba99eaa791673cb6f4940e6 (patch) | |
tree | af0432cdbd4d7a21e2aa70b7e6d7585becd4c82d /krebs/5pkgs/test/infest-cac-centos7/default.nix | |
parent | fb8907aa1c0e4c0b0c5dc421f55ef8b94c5db193 (diff) | |
parent | 7fa69b3399d8b52526928df81b2a6cad3f931a28 (diff) |
Merge remote-tracking branch 'lass/21.05' into 21.05
Diffstat (limited to 'krebs/5pkgs/test/infest-cac-centos7/default.nix')
-rw-r--r-- | krebs/5pkgs/test/infest-cac-centos7/default.nix | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/krebs/5pkgs/test/infest-cac-centos7/default.nix b/krebs/5pkgs/test/infest-cac-centos7/default.nix index 9b14bf486..c3fc0ee2b 100644 --- a/krebs/5pkgs/test/infest-cac-centos7/default.nix +++ b/krebs/5pkgs/test/infest-cac-centos7/default.nix @@ -1,6 +1,6 @@ -{ stdenv, coreutils, makeWrapper, - cac-api, cac-cert, cac-panel, gnumake, gnused, jq, openssh, sshpass, proot, - ... }: +{ lib, makeWrapper, stdenv +, cac-api, cac-cert, cac-panel, coreutils, gnumake, gnused, jq, openssh, proot, sshpass +}: stdenv.mkDerivation rec { name = "${shortname}-${version}"; @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { buildInputs = [ makeWrapper ]; - path = stdenv.lib.makeSearchPath "bin" [ + path = lib.makeSearchPath "bin" [ coreutils cac-api cac-panel @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { --set REQUESTS_CA_BUNDLE ${cac-cert} \ --set SSL_CERT_FILE ${cac-cert} ''; - meta = with stdenv.lib; { + meta = with lib; { homepage = http://krebsco.de; description = "infest a CaC box with stockholm"; license = licenses.wtfpl; |