Merge pull request #79874 from oxzi/tinycbor-v0.5.3

tinycbor: init at 0.5.3
This commit is contained in:
Martin Weinelt 2020-08-15 16:31:31 +02:00 committed by GitHub
commit 99d379c45c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

@ -7216,6 +7216,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 { };