Merge pull request #307856 from markus-heinrich/submit/horcrux

horcrux: init at unstable-2023-09-19
This commit is contained in:
Peder Bergebakken Sundt 2024-06-05 04:12:27 +02:00 committed by GitHub
commit dac1ac87ae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 ];
};
}