Unverified Commit d41fd652 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

amber-secret: add changelog to meta (#371251)

parents 430e618f 44086f2d
Loading
Loading
Loading
Loading
+8 −7
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  rustPlatform,
  darwin,
  fetchFromGitHub,
  Security,
  rustPlatform,
}:

rustPlatform.buildRustPackage rec {
@@ -15,18 +15,19 @@ rustPlatform.buildRustPackage rec {
    owner = "fpco";
    repo = "amber";
    rev = "v${version}";
    sha256 = "sha256-nduSnDhLvHpZD7Y1zeZC4nNL7P1qfLWc0yMpsdqrKHM=";
    hash = "sha256-nduSnDhLvHpZD7Y1zeZC4nNL7P1qfLWc0yMpsdqrKHM=";
  };

  cargoHash = "sha256-DxTsbJ51TUMvc/NvsUYhRG9OxxEGrWfEPYCOYaG9PXo=";

  buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ Security ];
  buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ darwin.apple_sdk.frameworks.Security ];

  meta = with lib; {
  meta = {
    description = "Manage secret values in-repo via public key cryptography";
    homepage = "https://github.com/fpco/amber";
    license = licenses.mit;
    maintainers = with maintainers; [ psibi ];
    changelog = "https://github.com/fpco/amber/releases/tag/v${version}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ psibi ];
    mainProgram = "amber";
  };
}
+0 −4
Original line number Diff line number Diff line
@@ -1582,10 +1582,6 @@ with pkgs;
    inherit (darwin.apple_sdk.frameworks) Security;
  };
  amber-secret = callPackage ../tools/security/amber {
    inherit (darwin.apple_sdk.frameworks) Security;
  };
  inherit (callPackages ../development/tools/ammonite {})
    ammonite_2_12
    ammonite_2_13