passwdqc-utils: stdenv.lib -> lib

Deprecated since nixpkgs 21.05
This commit is contained in:
tv 2021-06-02 01:20:36 +02:00
parent e5aafcc723
commit 7867885f39

View File

@ -1,7 +1,7 @@
{ stdenv, pam, { fetchurl, lib, stdenv
fetchurl, lib, , pam
wordset-file ? null, # set your own wordset-file , wordset-file ? null, # set your own wordset-file
... }: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "passwdqc-utils-${version}"; name = "passwdqc-utils-${version}";
@ -30,8 +30,8 @@ stdenv.mkDerivation rec {
meta = { meta = {
description = "passwdqc utils (pwqgen,pwqcheck) and library"; description = "passwdqc utils (pwqgen,pwqcheck) and library";
license = stdenv.lib.licenses.bsd3; license = lib.licenses.bsd3;
maintainers = [ stdenv.lib.maintainers.makefu ]; maintainers = [ lib.maintainers.makefu ];
patforms = stdenv.lib.platforms.linux; # more installFlags must be set for Darwin,Solaris patforms = lib.platforms.linux; # more installFlags must be set for Darwin,Solaris
}; };
} }