nixpkgs/pkgs/development/libraries/libcbor/default.nix

28 lines
717 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, cmocka }:
2019-03-29 14:58:12 +00:00
stdenv.mkDerivation rec {
pname = "libcbor";
version = "0.8.0";
2019-03-29 14:58:12 +00:00
src = fetchFromGitHub {
owner = "PJK";
repo = pname;
rev = "v${version}";
sha256 = "01dv4vxcmbvpphqy16vqiwh25wx11x630js5wfnx7cryarsh9ld7";
2019-03-29 14:58:12 +00:00
};
nativeBuildInputs = [ cmake ];
checkInputs = [ cmocka ];
doCheck = false; # needs "-DWITH_TESTS=ON", but fails w/compilation error
cmakeFlags = [ "-DCMAKE_INSTALL_LIBDIR=lib" "-DBUILD_SHARED_LIBS=on" ];
2019-03-29 14:58:12 +00:00
meta = with lib; {
2019-03-29 14:58:12 +00:00
description = "CBOR protocol implementation for C and others";
homepage = "https://github.com/PJK/libcbor";
2019-03-29 14:58:12 +00:00
license = licenses.mit;
maintainers = with maintainers; [ dtzWill ];
};
}