Merge pull request #194518 from SebTM/add/librist_026
This commit is contained in:
commit
5317b0c571
43
pkgs/development/libraries/librist/default.nix
Normal file
43
pkgs/development/libraries/librist/default.nix
Normal file
@ -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;
|
||||
};
|
||||
}
|
@ -26057,6 +26057,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…
Reference in New Issue
Block a user