96 lines
2.1 KiB
Nix
96 lines
2.1 KiB
Nix
{ stdenv
|
|
, lib
|
|
, rustPlatform
|
|
, fetchFromGitLab
|
|
, fetchpatch
|
|
, meson
|
|
, ninja
|
|
, gettext
|
|
, python3
|
|
, pkg-config
|
|
, glib
|
|
, libhandy
|
|
, gtk3
|
|
, appstream-glib
|
|
, desktop-file-utils
|
|
, dbus
|
|
, openssl
|
|
, sqlite
|
|
, gst_all_1
|
|
, wrapGAppsHook
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnome-podcasts";
|
|
version = "0.5.1";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.gnome.org";
|
|
owner = "World";
|
|
repo = "podcasts";
|
|
rev = version;
|
|
sha256 = "00vy1qkkpn76jdpybsq9qp8s6fh1ih10j73p2x43sl97m5g8944h";
|
|
};
|
|
|
|
patches = [
|
|
# Fix build with meson 0.61, can be removed on next release.
|
|
# podcasts-gtk/resources/meson.build:5:0: ERROR: Function does not take positional arguments.
|
|
# podcasts-gtk/resources/meson.build:30:0: ERROR: Function does not take positional arguments.
|
|
(fetchpatch {
|
|
url = "https://gitlab.gnome.org/World/podcasts/-/commit/6614bb62ecbec7c3b18ea7fe44beb50fe7942b27.patch";
|
|
sha256 = "3TVKFV9V6Ofdajgkdc+j+yxsU21C4JWSc6GjLExSM00=";
|
|
})
|
|
];
|
|
|
|
cargoDeps = rustPlatform.fetchCargoTarball {
|
|
inherit src;
|
|
name = "${pname}-${version}";
|
|
sha256 = "0y34b5rnr75h7dxbx93mafrmwsh187wq5js7fmkb1m1yyybj1v1x";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
gettext
|
|
python3
|
|
rustPlatform.rust.cargo
|
|
rustPlatform.cargoSetupHook
|
|
rustPlatform.rust.rustc
|
|
wrapGAppsHook
|
|
glib
|
|
];
|
|
|
|
buildInputs = [
|
|
appstream-glib
|
|
desktop-file-utils
|
|
glib
|
|
gtk3
|
|
libhandy
|
|
dbus
|
|
openssl
|
|
sqlite
|
|
gst_all_1.gstreamer
|
|
gst_all_1.gst-plugins-base
|
|
gst_all_1.gst-plugins-bad
|
|
gst_all_1.gst-plugins-good
|
|
];
|
|
|
|
# tests require network
|
|
doCheck = false;
|
|
|
|
postPatch = ''
|
|
chmod +x scripts/compile-gschema.py # patchShebangs requires executable file
|
|
patchShebangs scripts/compile-gschema.py scripts/cargo.sh scripts/test.sh
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Listen to your favorite podcasts";
|
|
homepage = "https://wiki.gnome.org/Apps/Podcasts";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = teams.gnome.members;
|
|
platforms = platforms.unix;
|
|
broken = stdenv.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/gnome-podcasts.x86_64-darwin
|
|
};
|
|
}
|