toxic: 0.15.1 -> 0.16.0
[NixPkgs.git] / pkgs / by-name / gi / git-agecrypt / package.nix
blobe2a2c502031e001118dce643c34f5e20323e340d
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   rustPlatform,
6   darwin,
7   libgit2,
8   git,
9   pkg-config,
10   zlib,
13 rustPlatform.buildRustPackage {
14   pname = "git-agecrypt";
15   version = "unstable-2024-03-11";
17   src = fetchFromGitHub {
18     owner = "vlaci";
19     repo = "git-agecrypt";
20     rev = "126be86c515466c5878a60561f754a9ab4af6ee8";
21     hash = "sha256-cmnBW/691mmLHq8tWpD3+zwCf7Wph5fcVdSxQGxqd1k=";
22   };
24   cargoHash = "sha256-FmlJeWMIIyTsg3TTLUia14et+aTgFCTkOr1J5dp0SGY=";
26   nativeBuildInputs = [
27     pkg-config
28     git
29   ];
31   buildInputs = [
32     libgit2
33     zlib
34   ] ++ lib.optional stdenv.hostPlatform.isDarwin darwin.apple_sdk.frameworks.Security;
36   meta = with lib; {
37     description = "Alternative to git-crypt using age instead of GPG";
38     homepage = "https://github.com/vlaci/git-agecrypt";
39     license = licenses.mpl20;
40     maintainers = with maintainers; [ kuznetsss ];
41     mainProgram = "git-agecrypt";
42   };