mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
Merge pull request #57872 from BadDecisionsAlex/patch-3
ecdsatool: init at 0.0.1
This commit is contained in:
commit
127c1b19b3
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