depot/third_party/nixpkgs/pkgs/tools/security/ecdsatool/default.nix
Default email d6cfb865ad Project import generated by Copybara.
GitOrigin-RevId: 5265d49a36bb5a18c85e6817b338b456acc3b8cc
2020-10-18 20:13:06 -04:00

28 lines
695 B
Nix

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