pwdsafety: refactor

This commit is contained in:
Fabian Affolter 2024-04-20 11:35:32 +02:00
parent a67771aa1a
commit 4fb51d082b
1 changed files with 9 additions and 3 deletions

View File

@ -9,18 +9,24 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "edoardottt";
repo = pname;
rev = "v${version}";
repo = "pwdsafety";
rev = "refs/tags/v${version}";
hash = "sha256-cKxTcfNjvwcDEw0Z1b50A4u0DUYXlGMMfGWJLPaSkcw=";
};
vendorHash = "sha256-RoRq9JZ8lOMtAluz8TB2RRuDEWFOBtWVhz21aTkXXy4=";
ldflags = [
"-w"
"-s"
];
meta = with lib; {
description = "Command line tool checking password safety";
mainProgram = "cmd";
homepage = "https://github.com/edoardottt/pwdsafety";
changelog = "https://github.com/edoardottt/pwdsafety/releases/tag/v${version}";
license = with licenses; [ gpl3Plus ];
maintainers = with maintainers; [ fab ];
mainProgram = "pwdsafety";
};
}