Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

61 lines
1.1 KiB
Nix
Raw Normal View History

2024-05-22 19:08:08 +02:00
{
lib,
stdenv,
fetchFromGitHub,
meson,
ninja,
pkg-config,
rustPlatform,
rustc,
cargo,
wrapGAppsHook4,
blueprint-compiler,
libadwaita,
desktop-file-utils,
openssl,
}:
stdenv.mkDerivation rec {
pname = "televido";
2024-06-25 12:55:17 +02:00
version = "0.4.0";
2024-05-22 19:08:08 +02:00
src = fetchFromGitHub {
owner = "d-k-bo";
repo = "televido";
rev = "v${version}";
2024-06-25 12:55:17 +02:00
hash = "sha256-pMrMXRnfvpDLFkL2IqYJKRao/OF78mXUCBqBgT97+hc=";
2024-05-22 19:08:08 +02:00
};
cargoDeps = rustPlatform.fetchCargoVendor {
2024-05-22 19:08:08 +02:00
inherit src;
name = "${pname}-${version}";
hash = "sha256-o857QBRfANkk6e/zIwc0JLpsiP2+wCb5U7Umlx4xMdI=";
2024-05-22 19:08:08 +02:00
};
nativeBuildInputs = [
meson
ninja
pkg-config
rustPlatform.cargoSetupHook
rustc
cargo
wrapGAppsHook4
blueprint-compiler
openssl
];
buildInputs = [
libadwaita
desktop-file-utils
];
meta = with lib; {
description = "Viewer for German-language public broadcasting live streams and archives";
homepage = "https://github.com/d-k-bo/televido";
license = licenses.gpl3;
mainProgram = "televido";
maintainers = with maintainers; [ seineeloquenz ];
platforms = platforms.linux;
};
}