Skip to content

Commit

Permalink
Merge pull request #171677 from mweinelt/ecdsautils
Browse files Browse the repository at this point in the history
  • Loading branch information
mweinelt authored May 5, 2022
2 parents 9af7f00 + 974603c commit 35ddacd
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions pkgs/tools/security/ecdsautils/default.nix
Original file line number Diff line number Diff line change
@@ -1,22 +1,25 @@
{ lib, stdenv, pkgs }:

stdenv.mkDerivation {
version = "0.4.0";
let
pname = "ecdsautils";
version = "0.4.1";
in
stdenv.mkDerivation {
inherit pname version;

src = pkgs.fetchFromGitHub {
owner = "freifunk-gluon";
repo = "ecdsautils";
rev = "07538893fb6c2a9539678c45f9dbbf1e4f222b46";
sha256 = "18sr8x3qiw8s9l5pfi7r9i3ayplz4jqdml75ga9y933vj7vs0k4d";
repo = pname;
rev = "v${version}";
sha256 = "sha256-dv0guQTmot5UO1GkMgzvD6uJFyum5kV89LI3xWS1DZA=";
};

nativeBuildInputs = with pkgs; [ cmake pkg-config doxygen ];
buildInputs = with pkgs; [ libuecc ];

meta = with lib; {
description = "Tiny collection of programs used for ECDSA (keygen, sign, verify)";
homepage = "https://github.com/tcatm/ecdsautils/";
homepage = "https://github.com/freifunk-gluon/ecdsautils/";
license = with licenses; [ mit bsd2 ];
maintainers = with maintainers; [ ];
platforms = platforms.unix;
Expand Down

0 comments on commit 35ddacd

Please sign in to comment.