mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
libuecc: init at 7
This commit is contained in:
parent
2c47729a75
commit
3b58daf315
24
pkgs/development/libraries/libuecc/default.nix
Normal file
24
pkgs/development/libraries/libuecc/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, fetchgit, cmake }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "7";
|
||||
name = "libuecc-${version}";
|
||||
|
||||
src = fetchgit {
|
||||
url = "git://git.universe-factory.net/libuecc";
|
||||
rev = "refs/tags/v${version}";
|
||||
sha256 = "1sm05aql75sh13ykgsv3ns4x4zzw9lvzid6misd22gfgf6r9n5fs";
|
||||
};
|
||||
|
||||
buildInputs = [ cmake ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with stdenv.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 ];
|
||||
};
|
||||
}
|
@ -8179,6 +8179,8 @@ in
|
||||
|
||||
libu2f-server = callPackage ../development/libraries/libu2f-server { };
|
||||
|
||||
libuecc = callPackage ../development/libraries/libuecc { };
|
||||
|
||||
libui = callPackage ../development/libraries/libui { };
|
||||
|
||||
libunity = callPackage ../development/libraries/libunity { };
|
||||
|
Loading…
Reference in New Issue
Block a user