Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
47 lines
944 B
Nix
47 lines
944 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
pkgs,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
version = "0.0.1";
|
|
pname = "ecdsatool";
|
|
|
|
src = pkgs.fetchFromGitHub {
|
|
owner = "kaniini";
|
|
repo = "ecdsatool";
|
|
rev = "7c0b2c51e2e64d1986ab1dc2c57c2d895cc00ed1";
|
|
sha256 = "08z9309znkhrjpwqd4ygvm7cd1ha1qbrnlzw64fr8704jrmx762k";
|
|
};
|
|
|
|
configurePhase = ''
|
|
runHook preConfigure
|
|
|
|
./autogen.sh
|
|
./configure --prefix=$out
|
|
|
|
runHook postConfigure
|
|
'';
|
|
|
|
patches = [
|
|
./ctype-header-c99-implicit-function-declaration.patch
|
|
./openssl-header-c99-implicit-function-declaration.patch
|
|
];
|
|
|
|
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;
|
|
};
|
|
}
|