diff options
author | makefu <github@syntax-fehler.de> | 2017-12-12 16:32:21 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2017-12-12 16:32:21 +0100 |
commit | 42cdfa733ca9e0432ba6096206ff34fb40b539db (patch) | |
tree | 2795e93b6a1113164fd6146912dd4ab46a5e9e9f /krebs/5pkgs/simple/passwdqc-utils/default.nix | |
parent | 05d85719fc4d3f1f01104fecf8ab7c1af5359588 (diff) |
pkgs.passwdqc-utils: rip
Diffstat (limited to 'krebs/5pkgs/simple/passwdqc-utils/default.nix')
-rw-r--r-- | krebs/5pkgs/simple/passwdqc-utils/default.nix | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/krebs/5pkgs/simple/passwdqc-utils/default.nix b/krebs/5pkgs/simple/passwdqc-utils/default.nix deleted file mode 100644 index 53e7f5482..000000000 --- a/krebs/5pkgs/simple/passwdqc-utils/default.nix +++ /dev/null @@ -1,37 +0,0 @@ -{ stdenv, pam, - fetchurl, lib, - wordset-file ? null, # set your own wordset-file - ... }: - -stdenv.mkDerivation rec { - name = "passwdqc-utils-${version}"; - version = "1.3.0"; - buildInputs = [ pam ]; - - src = fetchurl { - url = "http://www.openwall.com/passwdqc/passwdqc-${version}.tar.gz"; - sha256 = "0l3zbrp4pvah0dz33m48aqlz9nx663cc1fqhnlwr0p853b10la93"; - }; - - buildTargets = "utils"; - installFlags= [ "BINDIR=$(out)/bin" - "CONFDIR=$(out)/etc" - "SHARED_LIBDIR=$(out)/lib" - "DEVEL_LIBDIR=$(out)/lib" - "SECUREDIR=$(out)/lib/security" - "INCLUDEDIR=$(out)/include" - "MANDIR=$(out)/man" ]; - - patchPhase = lib.optionalString (wordset-file != null) '' - cp -f ${wordset-file} wordset_4k.c - ''; - - installTargets = "install_lib install_utils"; - - 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 - }; -} |