librist: init at v0.2.7

main
Sebastian Sellmeier 2 years ago
parent b7a6fde153
commit 2e46675525
No known key found for this signature in database
GPG Key ID: 51E2BE0CCC826F98
  1. 43
      pkgs/development/libraries/librist/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,43 @@
{ 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;
};
}

@ -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 { };

Loading…
Cancel
Save