snowflake/pkgs/passgen/default.nix
notohh 287d63b41a
All checks were successful
ci/woodpecker/cron/flake-lock-update Pipeline was successful
pkgs: add forex && passgen
2024-06-01 14:46:29 -04:00

26 lines
645 B
Nix

{
rustPlatform,
fetchFromGitea,
lib,
...
}:
rustPlatform.buildRustPackage {
name = "passgen";
src = fetchFromGitea {
domain = "git.flake.sh";
owner = "notohh";
repo = "passgen";
rev = "fa2181af70b5efa0376a5f6ffa937073b2201339";
sha256 = "sha256-E77mzceKBaXOjW/C/aHfUltt1Wb7RAzvJzhlgmbxkoE=";
};
cargoSha256 = "sha256-A8W7Qz+8cy6sPjLBC5a4Brz+cCyGPeNM1f7oZ6pmfe0=";
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];
};
}