about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/security/ecdsatool/default.nix
blob: aa55facfd8e044ada02117069514efbbf68d4f7a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib, 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 lib; {
    description = "Create and manipulate ECC NISTP256 keypairs";
    mainProgram = "ecdsatool";
    homepage = "https://github.com/kaniini/ecdsatool/";
    license = with licenses; [free];
    platforms = platforms.unix;
  };
}