mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
revanity-go: init at 0-unstable-2026-03-30
This commit is contained in:
parent
60bbf01788
commit
1d546d0b19
1 changed files with 38 additions and 0 deletions
38
pkgs/by-name/re/revanity-go/package.nix
Normal file
38
pkgs/by-name/re/revanity-go/package.nix
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
lib,
|
||||
buildGoModule,
|
||||
fetchFromGitHub,
|
||||
libsodium,
|
||||
nix-update-script,
|
||||
}:
|
||||
|
||||
buildGoModule (finalAttrs: {
|
||||
pname = "revanity-go";
|
||||
version = "0-unstable-2026-03-30";
|
||||
__structuredAttrs = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ratspeak";
|
||||
repo = "revanity-go";
|
||||
rev = "0689c73bdc95fe14957f67075891cc6653f3568c";
|
||||
hash = "sha256-utf9YcVCdWj78oDGxRSvTXRRXnUPLMypk77yBdOI24c=";
|
||||
};
|
||||
|
||||
vendorHash = null;
|
||||
|
||||
buildInputs = [
|
||||
libsodium
|
||||
];
|
||||
|
||||
ldflags = [ "-s" ];
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
meta = {
|
||||
description = "Go implementation of Revanity, a Reticulum/LXMF vanity address generator";
|
||||
homepage = "https://github.com/ratspeak/revanity-go";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ drupol ];
|
||||
mainProgram = "revanity-go";
|
||||
};
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue