snowflake/pkgs/passgen/default.nix

27 lines
643 B
Nix
Raw Permalink Normal View History

2024-06-01 14:46:29 -04:00
{
rustPlatform,
fetchFromGitea,
lib,
...
}:
rustPlatform.buildRustPackage {
name = "passgen";
src = fetchFromGitea {
domain = "git.flake.sh";
owner = "notohh";
repo = "passgen";
rev = "4a01bd5faae893682e7011632bdda8f12c96ef49";
sha256 = "sha256-+a1B1Z/N7OsGTVmIBp/JJZYdvTerClHo7y1Bn419dlg=";
2024-06-01 14:46:29 -04:00
};
2024-08-10 17:06:09 -04:00
cargoHash = "sha256-A8W7Qz+8cy6sPjLBC5a4Brz+cCyGPeNM1f7oZ6pmfe0=";
2024-06-01 14:46:29 -04:00
meta = with lib; {
description = "password generator for rust practice";
mainProgram = "passgen";
homepage = "https://git.flake.sh/notohh/passgen";
license = licenses.mit;
maintainers = with maintainers; [notohh];
};
}