My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/libuecc/default.nix

22 lines
579 B

{ lib, stdenv, fetchgit, cmake }:
stdenv.mkDerivation rec {
version = "7";
pname = "libuecc";
src = fetchgit {
url = "git://git.universe-factory.net/libuecc";
rev = "refs/tags/v${version}";
sha256 = "1sm05aql75sh13ykgsv3ns4x4zzw9lvzid6misd22gfgf6r9n5fs";
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
description = "Very small Elliptic Curve Cryptography library";
homepage = "https://git.universe-factory.net/libuecc";
license = licenses.bsd2;
platforms = platforms.unix;
maintainers = with maintainers; [ fpletz ];
};
}