mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
ecdsatool: init at 0.0.1
Added `ecdsatool`, used for ECC NISTP256 keypairs. This tool is distinct from the similarly names `ecdsautils`.
This commit is contained in:
parent
0f3146eda7
commit
895f86e25d
1 changed files with 28 additions and 0 deletions
28
pkgs/tools/security/default.nix
Normal file
28
pkgs/tools/security/default.nix
Normal file
|
@ -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;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue