about summary refs log tree commit diff
path: root/pkgs/tools/security/keyscope
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2021-10-21 11:58:28 -0400
committerfigsoda <figsoda@pm.me>2021-10-21 11:58:28 -0400
commit3d099a378634ee06fd9e7813d8184a0836472326 (patch)
treea0d5fc54fdea6ada39cd434ddae2f009ee37dc3e /pkgs/tools/security/keyscope
parentbed8ee21f734a28b8fd6077a5d28cd82fd0995bd (diff)
keyscope: init at 1.0.1
Diffstat (limited to 'pkgs/tools/security/keyscope')
-rw-r--r--pkgs/tools/security/keyscope/default.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/pkgs/tools/security/keyscope/default.nix b/pkgs/tools/security/keyscope/default.nix
new file mode 100644
index 0000000000000..163ebc592c5e7
--- /dev/null
+++ b/pkgs/tools/security/keyscope/default.nix
@@ -0,0 +1,41 @@
+{ lib
+, rustPlatform
+, fetchFromGitHub
+, pkg-config
+, openssl
+, stdenv
+, Security
+}:
+
+rustPlatform.buildRustPackage rec {
+  pname = "keyscope";
+  version = "1.0.1";
+
+  src = fetchFromGitHub {
+    owner = "spectralops";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "0dv559a5al7p8r3l90sky4fx4qsxwxlm0ani8qn75pxb70z22qj5";
+  };
+
+  cargoSha256 = "sha256-+6O1EY67MVxWrco7a0QTF7Ls1w9YWwNYjiaEe9ckCkg=";
+
+  nativeBuildInputs = [ pkg-config ];
+
+  buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security;
+
+  # build script tries to get information from git
+  postPatch = ''
+    echo "fn main() {}" > build.rs
+  '';
+
+  VERGEN_GIT_SEMVER = "v${version}";
+
+  meta = with lib; {
+    description = "A key and secret workflow (validation, invalidation, etc.) tool";
+    homepage = "https://github.com/spectralops/keyscope";
+    changelog = "https://github.com/spectralops/keyscope/blob/v${version}/CHANGELOG.md";
+    license = licenses.asl20;
+    maintainers = with maintainers; [ figsoda ];
+  };
+}