nixpkgs/pkgs/tools/security/ecdsautils/default.nix

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

28 lines
702 B
Nix
Raw Normal View History

{ lib, stdenv, pkgs }:
2017-10-28 17:39:56 +02:00
let
pname = "ecdsautils";
version = "0.4.1";
in
stdenv.mkDerivation {
inherit pname version;
2017-10-28 17:39:56 +02:00
src = pkgs.fetchFromGitHub {
owner = "freifunk-gluon";
repo = pname;
rev = "v${version}";
sha256 = "sha256-dv0guQTmot5UO1GkMgzvD6uJFyum5kV89LI3xWS1DZA=";
2017-10-28 17:39:56 +02:00
};
2021-01-17 04:51:22 +01:00
nativeBuildInputs = with pkgs; [ cmake pkg-config doxygen ];
2017-10-28 17:39:56 +02:00
buildInputs = with pkgs; [ libuecc ];
meta = with lib; {
2017-10-28 17:39:56 +02:00
description = "Tiny collection of programs used for ECDSA (keygen, sign, verify)";
homepage = "https://github.com/freifunk-gluon/ecdsautils/";
2017-10-28 17:39:56 +02:00
license = with licenses; [ mit bsd2 ];
maintainers = with maintainers; [ ];
2017-10-28 17:39:56 +02:00
platforms = platforms.unix;
};
}