Skip to content

Commit

Permalink
Merge #30901: ecdsautils: init 0.4.0
Browse files Browse the repository at this point in the history
(cherry picked from commit 15350df)
It's a simple package addition.
  • Loading branch information
vcunat committed Oct 29, 2017
1 parent 03815a8 commit f8668b0
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pkgs/tools/security/ecdsautils/default.nix
@@ -0,0 +1,24 @@
{ stdenv, pkgs }:

stdenv.mkDerivation rec {
version = "0.4.0";
name = "ecdsautils-${version}";

src = pkgs.fetchFromGitHub {
owner = "tcatm";
repo = "ecdsautils";
rev = "07538893fb6c2a9539678c45f9dbbf1e4f222b46";
sha256 = "18sr8x3qiw8s9l5pfi7r9i3ayplz4jqdml75ga9y933vj7vs0k4d";
};

nativeBuildInputs = with pkgs; [ cmake pkgconfig doxygen ];
buildInputs = with pkgs; [ libuecc ];

meta = with stdenv.lib; {
description = "Tiny collection of programs used for ECDSA (keygen, sign, verify)";
homepage = https://github.com/tcatm/ecdsautils/;
license = with licenses; [ mit bsd2 ];
maintainers = with maintainers; [ andir ];
platforms = platforms.unix;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -570,6 +570,8 @@ with pkgs;

dkimpy = pythonPackages.dkimpy;

ecdsautils = callPackage ../tools/security/ecdsautils { };

elvish = callPackage ../shells/elvish { };

encryptr = callPackage ../tools/security/encryptr {
Expand Down

0 comments on commit f8668b0

Please sign in to comment.