forked from mirrors/nixpkgs
Merge pull request #79874 from oxzi/tinycbor-v0.5.3
tinycbor: init at 0.5.3
This commit is contained in:
commit
99d379c45c
22
pkgs/development/libraries/tinycbor/default.nix
Normal file
22
pkgs/development/libraries/tinycbor/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue