nixpkgs/pkgs/development/libraries/zxcvbn-c/default.nix
xurei b9ae8efca5 libzxcvbn: init at 2.3 (#33822)
* Add package libzxcvbn

* zxcvbn-c: name after the project not the library
2018-01-13 10:40:45 +00:00

25 lines
631 B
Nix

{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "zxcvbn-c-${version}";
version = "2.3";
src = fetchFromGitHub {
owner = "tsyrogit";
repo = "zxcvbn-c";
rev = "v${version}";
sha256 = "1m097b4qq1r3kk4b236pc3mpaj22il9fh43ifagad5wy54x8zf7b";
};
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 ];
};
}