linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / libcbor / default.nix
blob349b715d8520c7df8d5a1a1db77e74f54cefbf15
1 { lib, stdenv, fetchFromGitHub, cmake, cmocka }:
3 stdenv.mkDerivation rec {
4   pname = "libcbor";
5   version = "0.8.0";
7   src = fetchFromGitHub {
8     owner = "PJK";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "01dv4vxcmbvpphqy16vqiwh25wx11x630js5wfnx7cryarsh9ld7";
12   };
14   nativeBuildInputs = [ cmake ];
15   checkInputs = [ cmocka ];
17   doCheck = false; # needs "-DWITH_TESTS=ON", but fails w/compilation error
19   cmakeFlags = [ "-DCMAKE_INSTALL_LIBDIR=lib" "-DBUILD_SHARED_LIBS=on" ];
21   meta = with lib; {
22     description = "CBOR protocol implementation for C and others";
23     homepage = "https://github.com/PJK/libcbor";
24     license = licenses.mit;
25     maintainers = with maintainers; [ dtzWill ];
26   };