chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / ho / horcrux / package.nix
blobcd54cd4f060b5de3f0071335cf856ce46009b3f3
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "horcrux";
9   version = "0.3-unstable-2023-09-19";
11   src = fetchFromGitHub {
12     owner = "jesseduffield";
13     repo = "horcrux";
14     rev = "5e848abcca49a7ad359f5a24ef4ca7e0eda80889";
15     hash = "sha256-YOu3qJadfyA6MKW8OFLr0pFjGMOgCGie2f8VbG79IY0=";
16   };
18   vendorHash = null;
20   meta = {
21     description = "Split your file into encrypted fragments so that you don't need to remember a passcode";
22     homepage = "https://github.com/jesseduffield/horcrux";
23     license = lib.licenses.mit;
24     mainProgram = "horcrux";
25     maintainers = with lib.maintainers; [ mh ];
26   };