Files
nixpkgs/pkgs/by-name/gi/git-agecrypt/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

42 lines
822 B
Nix

{
lib,
fetchFromGitHub,
rustPlatform,
libgit2,
git,
pkg-config,
zlib,
}:
rustPlatform.buildRustPackage {
pname = "git-agecrypt";
version = "0-unstable-2024-03-11";
src = fetchFromGitHub {
owner = "vlaci";
repo = "git-agecrypt";
rev = "126be86c515466c5878a60561f754a9ab4af6ee8";
hash = "sha256-cmnBW/691mmLHq8tWpD3+zwCf7Wph5fcVdSxQGxqd1k=";
};
cargoHash = "sha256-71puTOjuV3egkip8pbiYbKxfhoZYtnirp4NrgiXR13I=";
nativeBuildInputs = [
pkg-config
git
];
buildInputs = [
libgit2
zlib
];
meta = with lib; {
description = "Alternative to git-crypt using age instead of GPG";
homepage = "https://github.com/vlaci/git-agecrypt";
license = licenses.mpl20;
maintainers = with maintainers; [ kuznetsss ];
mainProgram = "git-agecrypt";
};
}