3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/security/pwdsafety/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
585 B
Nix
Raw Normal View History

2022-06-18 16:28:07 +01:00
{ lib
, buildGoModule
2021-01-19 21:23:34 +00:00
, fetchFromGitHub
}:
buildGoModule rec {
pname = "pwdsafety";
2022-06-18 16:28:07 +01:00
version = "0.3";
2021-01-19 21:23:34 +00:00
src = fetchFromGitHub {
owner = "edoardottt";
repo = pname;
rev = "v${version}";
2022-06-18 16:28:07 +01:00
hash = "sha256-ryMLiehJVZhQ3ZQf4/g7ILeJri78A6z5jfell0pD9E8=";
2021-01-19 21:23:34 +00:00
};
2022-06-18 16:28:07 +01:00
vendorSha256 = "sha256-b+tWTQUyYDzY2O28hwy5vI6b6S889TCiVh7hQhw/KAc=";
2021-01-19 21:23:34 +00:00
meta = with lib; {
description = "Command line tool checking password safety";
homepage = "https://github.com/edoardottt/pwdsafety";
license = with licenses; [ gpl3Plus ];
maintainers = with maintainers; [ fab ];
};
}