gnomeExtensions.pop-shell: 1.2.0-unstable-2024-10-09 -> 1.2.0-unstable-2024-12-31...
[NixPkgs.git] / pkgs / by-name / ag / agenix-cli / package.nix
blob82b547a4d46765ad5a1ec8d51839ddc7323c85d9
2   lib,
3   fetchFromGitHub,
4   rustPlatform,
5   nix-update-script,
6 }:
8 rustPlatform.buildRustPackage rec {
9   pname = "agenix-cli";
10   version = "0.1.0";
12   src = fetchFromGitHub {
13     owner = "cole-h";
14     repo = "agenix-cli";
15     rev = "v${version}";
16     sha256 = "sha256-0+QVY1sDhGF4hAN6m2FdKZgm9V1cuGGjY4aitRBnvKg=";
17   };
19   cargoHash = "sha256-TLCSLxrKLBge/DgyzvBSshssIiFOuc/4Dq0wY7u2hxI=";
21   passthru.updateScript = nix-update-script { };
23   meta = {
24     description = "Companion tool to https://github.com/ryantm/agenix";
25     homepage = "https://github.com/cole-h/agenix-cli";
26     license = with lib.licenses; [
27       asl20
28       mit
29     ];
30     maintainers = with lib.maintainers; [ misuzu ];
31     mainProgram = "agenix";
32   };