summary refs log blame commit diff
path: root/pkgs/development/libraries/libuecc/default.nix
blob: 1cc3ac8ebea1a92c05c33f14293ad13cf9baf757 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
                                 


                         
                    






                                                                    
                                
 
                    
                                                                   
                                                          




                                               
{ 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 ];
  };
}