infest-cac-centos7: stdenv.lib -> lib

Deprecated since nixpkgs 21.05
This commit is contained in:
tv 2021-06-02 01:35:56 +02:00
parent 5c613bd73a
commit 12dbb95b1b

View File

@ -1,6 +1,6 @@
{ stdenv, coreutils, makeWrapper, { lib, makeWrapper, stdenv
cac-api, cac-cert, cac-panel, gnumake, gnused, jq, openssh, sshpass, proot, , cac-api, cac-cert, cac-panel, coreutils, gnumake, gnused, jq, openssh, proot, sshpass
... }: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "${shortname}-${version}"; name = "${shortname}-${version}";
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
buildInputs = [ makeWrapper ]; buildInputs = [ makeWrapper ];
path = stdenv.lib.makeSearchPath "bin" [ path = lib.makeSearchPath "bin" [
coreutils coreutils
cac-api cac-api
cac-panel cac-panel
@ -36,7 +36,7 @@ stdenv.mkDerivation rec {
--set REQUESTS_CA_BUNDLE ${cac-cert} \ --set REQUESTS_CA_BUNDLE ${cac-cert} \
--set SSL_CERT_FILE ${cac-cert} --set SSL_CERT_FILE ${cac-cert}
''; '';
meta = with stdenv.lib; { meta = with lib; {
homepage = http://krebsco.de; homepage = http://krebsco.de;
description = "infest a CaC box with stockholm"; description = "infest a CaC box with stockholm";
license = licenses.wtfpl; license = licenses.wtfpl;