summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/security/ecdsatool
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-01-28 04:20:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2020-01-28 04:20:00 -0500
commitded3116b3b933faea4958d4ce5efbddb86e47b81 (patch)
tree0297a9c7c9cb124b64f2a2d023a0f9623ce3aa85 /pkgs/tools/security/ecdsatool
parent92558b8181b47ccef6a5bf22106f3228cb995693 (diff)
ecdsatool: add to all-packages.nix
Diffstat (limited to 'pkgs/tools/security/ecdsatool')
-rw-r--r--pkgs/tools/security/ecdsatool/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/tools/security/ecdsatool/default.nix b/pkgs/tools/security/ecdsatool/default.nix
new file mode 100644
index 000000000000..0e57a5bab884
--- /dev/null
+++ b/pkgs/tools/security/ecdsatool/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, pkgs }:
+
+stdenv.mkDerivation {
+ version = "0.0.1";
+ pname = "ecdsatool";
+
+ 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;
+ };
+}