diff options
author | tv <tv@krebsco.de> | 2021-06-02 01:20:36 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2021-06-02 02:43:38 +0200 |
commit | 7867885f3918b18c5254a596d63ec8f612fdadfa (patch) | |
tree | ec44772185debf21803a2019c5e2e1481c0fece7 /krebs | |
parent | e5aafcc72305dda83e879721cd1678cdc5816597 (diff) |
passwdqc-utils: stdenv.lib -> lib
Deprecated since nixpkgs 21.05
Diffstat (limited to 'krebs')
-rw-r--r-- | krebs/5pkgs/simple/passwdqc-utils/default.nix | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/krebs/5pkgs/simple/passwdqc-utils/default.nix b/krebs/5pkgs/simple/passwdqc-utils/default.nix index 53e7f5482..4cc8d5b21 100644 --- a/krebs/5pkgs/simple/passwdqc-utils/default.nix +++ b/krebs/5pkgs/simple/passwdqc-utils/default.nix @@ -1,7 +1,7 @@ -{ stdenv, pam, - fetchurl, lib, - wordset-file ? null, # set your own wordset-file - ... }: +{ fetchurl, lib, stdenv +, pam +, wordset-file ? null, # set your own wordset-file +}: stdenv.mkDerivation rec { name = "passwdqc-utils-${version}"; @@ -30,8 +30,8 @@ stdenv.mkDerivation rec { meta = { description = "passwdqc utils (pwqgen,pwqcheck) and library"; - license = stdenv.lib.licenses.bsd3; - maintainers = [ stdenv.lib.maintainers.makefu ]; - patforms = stdenv.lib.platforms.linux; # more installFlags must be set for Darwin,Solaris + license = lib.licenses.bsd3; + maintainers = [ lib.maintainers.makefu ]; + patforms = lib.platforms.linux; # more installFlags must be set for Darwin,Solaris }; } |