1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #57872 from BadDecisionsAlex/patch-3

ecdsatool: init at 0.0.1
This commit is contained in:
Matthew Bauer 2019-03-25 22:20:21 -04:00 committed by GitHub
commit 127c1b19b3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View 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;
};
}