about summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorAlex Ameen <alex.ameen.tx@gmail.com>2019-03-18 14:26:24 -0500
committerGitHub <noreply@github.com>2019-03-18 14:26:24 -0500
commit895f86e25de3687e29053d1599e8b60ad94756c5 (patch)
tree237d0251d9cc7add6b83b090ac1f2ed2879e5ab2 /pkgs/tools/security
parent0f3146eda73d21a1d3dd6b4a4ed593cab4e1650b (diff)
downloadnixlib-895f86e25de3687e29053d1599e8b60ad94756c5.tar
nixlib-895f86e25de3687e29053d1599e8b60ad94756c5.tar.gz
nixlib-895f86e25de3687e29053d1599e8b60ad94756c5.tar.bz2
nixlib-895f86e25de3687e29053d1599e8b60ad94756c5.tar.lz
nixlib-895f86e25de3687e29053d1599e8b60ad94756c5.tar.xz
nixlib-895f86e25de3687e29053d1599e8b60ad94756c5.tar.zst
nixlib-895f86e25de3687e29053d1599e8b60ad94756c5.zip
ecdsatool: init at 0.0.1
Added `ecdsatool`, used for ECC NISTP256 keypairs.
This tool is distinct from the similarly names `ecdsautils`.
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/tools/security/default.nix b/pkgs/tools/security/default.nix
new file mode 100644
index 000000000000..c5987d37889c
--- /dev/null
+++ b/pkgs/tools/security/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, pkgs }:
+
+stdenv.mkDerivation rec {
+  version = "0.0.1";
+  name = "ecdsatool-${version}";
+
+  src = pkgs.fetchFromGitHub {
+    owner = "kaniini";
+    repo = "ecdsatool";
+    rev = "7c0b2c51e2e64d1986ab1dc2c57c2d895cc00ed1";
+    sha256 = "08z9309znkhrjpwqd4ygvm7cd1ha1qbrnlzw64fr8704jrmx762k";
+  };
+
+  configurePhase = ''
+    ./autogen.sh
+    ./configure --prefix=$out
+  '';
+
+  nativeBuildInputs = with pkgs; [openssl autoconf automake];
+  buildInputs = with pkgs; [libuecc];
+
+  meta = with stdenv.lib; {
+    description = "Create and manipulate ECC NISTP256 keypairs.";
+    homepage = https://github.com/kaniini/ecdsatool/;
+    license = with licenses; [free];
+    platforms = platforms.unix;
+  };
+}