nixpkgs/pkgs/development/libraries/zxcvbn-c/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

25 lines
618 B
Nix

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