tinycbor: init at 0.5.3

gstqt5
Alvar Penning 2020-02-12 00:03:29 +01:00
parent 9e1ca22f66
commit c3da51ff08
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "tinycbor";
version = "0.5.3";
src = fetchFromGitHub {
owner = "intel";
repo = "tinycbor";
rev = "v${version}";
sha256 = "11y6liyd3fvc28d3dinii16sxgwgg2p29p41snc4h82dvvx5bb2b";
};
makeFlags = [ "prefix=$(out)" ];
meta = with stdenv.lib; {
description = "Concise Binary Object Representation (CBOR) Library";
homepage = "https://github.com/intel/tinycbor";
license = licenses.mit;
maintainers = with maintainers; [ oxzi ];
};
}

View File

@ -6795,6 +6795,8 @@ in
tinc_pre = callPackage ../tools/networking/tinc/pre.nix {};
tinycbor = callPackage ../development/libraries/tinycbor { };
tiny8086 = callPackage ../applications/virtualization/8086tiny { };
tinyemu = callPackage ../applications/virtualization/tinyemu { };