nixpkgs/pkgs/development/libraries/zxcvbn-c/default.nix
R. RyanTM b0e981d0bf zxcvbn-c: 2.3 -> 2.4 (#46925)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/zxcvbn-c/versions
2018-09-28 20:58:55 +02:00

25 lines
631 B
Nix

{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "zxcvbn-c-${version}";
version = "2.4";
src = fetchFromGitHub {
owner = "tsyrogit";
repo = "zxcvbn-c";
rev = "v${version}";
sha256 = "12ksdnpxlqlmg9zhyyk3bspcf0sfj5zk735vr4ry635qi7gzcaas";
};
installPhase = ''
install -D -t $out/lib libzxcvbn.so*
'';
meta = with stdenv.lib; {
homepage = https://github.com/tsyrogit/zxcvbn-c;
description = "A C/C++ implementation of the zxcvbn password strength estimation";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ xurei ];
};
}