diff options
author | tv <tv@krebsco.de> | 2021-06-02 01:35:56 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2021-06-02 02:43:38 +0200 |
commit | 12dbb95b1b6d74addc0d9d70e599a56af60c3bea (patch) | |
tree | b7cfcdd26e020d8c9a6da6455788c7e8e7c665a4 /krebs/5pkgs | |
parent | 5c613bd73a1d91ee3d08d62950bf86822f4fece6 (diff) |
infest-cac-centos7: stdenv.lib -> lib
Deprecated since nixpkgs 21.05
Diffstat (limited to 'krebs/5pkgs')
-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; |