mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
librist: init at v0.2.7
This commit is contained in:
parent
b7a6fde153
commit
2e46675525
2 changed files with 45 additions and 0 deletions
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;
|
||||
};
|
||||
}
|
|
@ -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…
Reference in a new issue