Unverified Commit 2e466755 authored by Sebastian Sellmeier's avatar Sebastian Sellmeier
Browse files

librist: init at v0.2.7

parent b7a6fde1
Loading
Loading
Loading
Loading
+43 −0
Original line number Diff line number Diff line
{ stdenv
, lib
, fetchFromGitLab
, meson
, ninja
, pkg-config
, cjson
, cmocka
, mbedtls
}:

stdenv.mkDerivation rec {
  pname = "librist";
  version = "0.2.7";

  src = fetchFromGitLab {
    domain = "code.videolan.org";
    owner = "rist";
    repo = "librist";
    rev = "v${version}";
    sha256 = "sha256-qQG2eRAPAQgxghMeUZk3nwyacX6jDl33F8BWW63nM3c=";
  };

  nativeBuildInputs = [
    meson
    ninja
    pkg-config
  ];

  buildInputs = [
    cjson
    cmocka
    mbedtls
  ];

  meta = with lib; {
    description = "A library that can be used to easily add the RIST protocol to your application.";
    homepage = "https://code.videolan.org/rist/librist";
    license = with licenses; [ bsd2 mit isc ];
    maintainers = with maintainers; [ raphaelr sebtm ];
    platforms = platforms.all;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -25981,6 +25981,8 @@ with pkgs;
  libratbag = callPackage ../os-specific/linux/libratbag { };
  librist = callPackage ../development/libraries/librist { };
  libre-baskerville = callPackage ../data/fonts/libre-baskerville { };
  libre-bodoni = callPackage ../data/fonts/libre-bodoni { };