From 12b2f372c0d53ca841c82ab734bf1c161301e795 Mon Sep 17 00:00:00 2001 From: Markus Heinrich <68288772+markus-heinrich@users.noreply.github.com> Date: Tue, 30 Apr 2024 00:22:45 +0200 Subject: [PATCH] horcrux: init at 0.3-unstable-2023-09-19 --- pkgs/by-name/ho/horcrux/package.nix | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 pkgs/by-name/ho/horcrux/package.nix diff --git a/pkgs/by-name/ho/horcrux/package.nix b/pkgs/by-name/ho/horcrux/package.nix new file mode 100644 index 000000000000..cd54cd4f060b --- /dev/null +++ b/pkgs/by-name/ho/horcrux/package.nix @@ -0,0 +1,27 @@ +{ + lib, + buildGoModule, + fetchFromGitHub, +}: + +buildGoModule rec { + pname = "horcrux"; + version = "0.3-unstable-2023-09-19"; + + src = fetchFromGitHub { + owner = "jesseduffield"; + repo = "horcrux"; + rev = "5e848abcca49a7ad359f5a24ef4ca7e0eda80889"; + hash = "sha256-YOu3qJadfyA6MKW8OFLr0pFjGMOgCGie2f8VbG79IY0="; + }; + + vendorHash = null; + + meta = { + description = "Split your file into encrypted fragments so that you don't need to remember a passcode"; + homepage = "https://github.com/jesseduffield/horcrux"; + license = lib.licenses.mit; + mainProgram = "horcrux"; + maintainers = with lib.maintainers; [ mh ]; + }; +}