python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / cracklib / default.nix
blob13029f7739c5307175601055b2731deb06a230ea
1 let version = "2.9.7"; in
2 { stdenv, lib, buildPackages, fetchurl, zlib, gettext
3 , wordlists ? [ (fetchurl {
4   url = "https://github.com/cracklib/cracklib/releases/download/v${version}/cracklib-words-${version}.gz";
5   sha256 = "12fk8w06q628v754l357cf8kfjna98wj09qybpqr892az3x4a33z";
6 }) ]
7 }:
9 stdenv.mkDerivation rec {
10   pname = "cracklib";
11   inherit version;
13   src = fetchurl {
14     url = "https://github.com/${pname}/${pname}/releases/download/v${version}/${pname}-${version}.tar.bz2";
15     sha256 = "1rimpjsdnmw8f5b7k558cic41p2qy2n2yrlqp5vh7mp4162hk0py";
16   };
18   nativeBuildInputs = lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) buildPackages.cracklib;
19   buildInputs = [ zlib gettext ];
21   postPatch = lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) ''
22     chmod +x util/cracklib-format
23     patchShebangs util
25   '' + ''
26     ln -vs ${toString wordlists} dicts/
27   '';
29   postInstall = ''
30     make dict-local
31   '';
32   doInstallCheck = true;
33   installCheckTarget = "test";
35   meta = with lib; {
36     homepage    = "https://github.com/cracklib/cracklib";
37     description = "A library for checking the strength of passwords";
38     license = licenses.lgpl21; # Different license for the wordlist: http://www.openwall.com/wordlists
39     maintainers = with maintainers; [ lovek323 ];
40     platforms   = platforms.unix;
41   };