python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / ecdsautils / default.nix
blob0a43260eb83154e8b9b7eaab268dca1ad4f222ac
1 { lib, stdenv, pkgs }:
3 let
4   pname = "ecdsautils";
5   version = "0.4.1";
6 in
7 stdenv.mkDerivation {
8   inherit pname version;
10   src = pkgs.fetchFromGitHub {
11     owner = "freifunk-gluon";
12     repo = pname;
13     rev = "v${version}";
14     sha256 = "sha256-dv0guQTmot5UO1GkMgzvD6uJFyum5kV89LI3xWS1DZA=";
15   };
17   nativeBuildInputs = with pkgs; [ cmake pkg-config doxygen ];
18   buildInputs = with pkgs; [ libuecc  ];
20   meta = with lib; {
21     description = "Tiny collection of programs used for ECDSA (keygen, sign, verify)";
22     homepage = "https://github.com/freifunk-gluon/ecdsautils/";
23     license = with licenses; [ mit bsd2 ];
24     maintainers = with maintainers; [ ];
25     platforms = platforms.unix;
26   };