Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
997 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchFromGitHub,
fetchpatch,
cmake,
pkg-config,
doxygen,
libuecc,
}:
let
pname = "ecdsautils";
version = "0.4.2";
in
stdenv.mkDerivation {
inherit pname version;
src = fetchFromGitHub {
owner = "freifunk-gluon";
repo = "ecdsautils";
rev = "v${version}";
sha256 = "sha256-vGHLAX/XOtePvdT/rljCOdlILHVO20mCt6p+MUi13dg=";
};
patches = [
(fetchpatch {
url = "https://github.com/freifunk-gluon/ecdsautils/commit/19f096f9c10264f4efe4b926fe83126e85642cba.patch";
hash = "sha256-oJv47NckFHFONPcG3WfHwgaHRqrz2eWXzbr5SQr+kX4=";
})
];
nativeBuildInputs = [
cmake
pkg-config
doxygen
];
buildInputs = [ libuecc ];
meta = with lib; {
description = "Tiny collection of programs used for ECDSA (keygen, sign, verify)";
homepage = "https://github.com/freifunk-gluon/ecdsautils/";
license = with licenses; [
mit
bsd2
];
maintainers = [ ];
platforms = platforms.unix;
};
}