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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
716 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, cmocka }:
2019-03-29 15:58:12 +01:00
stdenv.mkDerivation rec {
pname = "libcbor";
version = "0.9.0";
2019-03-29 15:58:12 +01:00
src = fetchFromGitHub {
owner = "PJK";
repo = pname;
rev = "v${version}";
sha256 = "sha256-Wp/48yQA17mf/dTgeMcMDvPpKOPkfLhQkCnzgGLpLtk=";
2019-03-29 15:58:12 +01: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 15:58:12 +01:00
meta = with lib; {
2019-03-29 15:58:12 +01:00
description = "CBOR protocol implementation for C and others";
homepage = "https://github.com/PJK/libcbor";
2019-03-29 15:58:12 +01:00
license = licenses.mit;
maintainers = with maintainers; [ dtzWill ];
};
}