nixpkgs/pkgs/tools/security/amber/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
772 B
Nix
Raw Normal View History

2021-09-20 15:12:54 +02:00
{ lib, stdenv, rustPlatform, fetchFromGitHub, Security }:
rustPlatform.buildRustPackage rec {
# Renaming it to amber-secret because another package named amber exists
pname = "amber-secret";
2022-03-14 03:14:12 +01:00
version = "0.1.3";
2021-09-20 15:12:54 +02:00
src = fetchFromGitHub {
owner = "fpco";
repo = "amber";
rev = "v${version}";
2022-03-14 03:14:12 +01:00
sha256 = "sha256-kPDNTwsfI+8nOgsLv2aONrLGSRZhw5YzNntJ2tbE0oI=";
2021-09-20 15:12:54 +02:00
};
2022-03-14 03:14:12 +01:00
cargoSha256 = "sha256-fTdTgbeOQXEpLHq9tHiPLkttvaxS/WJ86h3jRdrfbJM=";
2021-09-20 15:12:54 +02:00
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
meta = with lib; {
description = "Manage secret values in-repo via public key cryptography";
homepage = "https://github.com/fpco/amber";
license = licenses.mit;
maintainers = with maintainers; [ psibi ];
mainProgram = "amber";
};
}