2021-03-14 16:25:45 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
2019-11-19 13:59:43 +00:00
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitLab
|
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, gettext
|
|
|
|
, python3
|
2021-01-19 06:50:56 +00:00
|
|
|
, pkg-config
|
2019-11-19 13:59:43 +00:00
|
|
|
, glib
|
2020-10-03 23:58:12 +01:00
|
|
|
, libhandy_0
|
2019-11-19 13:59:43 +00:00
|
|
|
, gtk3
|
|
|
|
, dbus
|
|
|
|
, openssl
|
|
|
|
, sqlite
|
|
|
|
, gst_all_1
|
|
|
|
, wrapGAppsHook
|
|
|
|
}:
|
2018-09-23 02:00:08 +01:00
|
|
|
|
2021-03-14 16:25:45 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "gnome-podcasts";
|
2021-03-14 16:25:45 +00:00
|
|
|
version = "0.4.8";
|
2018-09-23 02:00:08 +01:00
|
|
|
|
2019-11-19 13:59:43 +00:00
|
|
|
src = fetchFromGitLab {
|
|
|
|
domain = "gitlab.gnome.org";
|
|
|
|
owner = "World";
|
|
|
|
repo = "podcasts";
|
|
|
|
rev = version;
|
2020-07-13 06:15:56 +01:00
|
|
|
sha256 = "0y2332zjq7vf1v38wzwz98fs19vpzy9kl7y0xbdzqr303l59hjb1";
|
2018-09-23 02:00:08 +01:00
|
|
|
};
|
|
|
|
|
2021-03-14 16:25:45 +00:00
|
|
|
cargoDeps = rustPlatform.fetchCargoTarball {
|
|
|
|
inherit src;
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
hash = "sha256-GInRA/V61r42spb/JYlM8+mATSkmOxdm2zHPRWaKcck=";
|
|
|
|
};
|
2018-09-23 02:00:08 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [
|
2019-11-19 13:59:43 +00:00
|
|
|
meson
|
|
|
|
ninja
|
2021-01-19 06:50:56 +00:00
|
|
|
pkg-config
|
2019-11-19 13:59:43 +00:00
|
|
|
gettext
|
|
|
|
python3
|
2021-03-14 16:25:45 +00:00
|
|
|
rustPlatform.rust.cargo
|
|
|
|
rustPlatform.cargoSetupHook
|
|
|
|
rustPlatform.rust.rustc
|
2019-11-19 13:59:43 +00:00
|
|
|
wrapGAppsHook
|
2020-03-29 08:30:16 +01:00
|
|
|
glib
|
2018-09-23 02:00:08 +01:00
|
|
|
];
|
2019-11-19 13:59:43 +00:00
|
|
|
|
2018-09-23 02:00:08 +01:00
|
|
|
buildInputs = [
|
2019-11-19 13:59:43 +00:00
|
|
|
glib
|
|
|
|
gtk3
|
2020-10-03 23:58:12 +01:00
|
|
|
libhandy_0
|
2019-11-19 13:59:43 +00:00
|
|
|
dbus
|
|
|
|
openssl
|
|
|
|
sqlite
|
|
|
|
gst_all_1.gstreamer
|
|
|
|
gst_all_1.gst-plugins-base
|
|
|
|
gst_all_1.gst-plugins-bad
|
2020-12-07 19:51:31 +00:00
|
|
|
gst_all_1.gst-plugins-good
|
2018-09-23 02:00:08 +01:00
|
|
|
];
|
|
|
|
|
2019-11-19 13:59:43 +00:00
|
|
|
# tests require network
|
|
|
|
doCheck = false;
|
2018-09-23 02:00:08 +01:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
chmod +x scripts/compile-gschema.py # patchShebangs requires executable file
|
2019-11-19 14:07:41 +00:00
|
|
|
patchShebangs scripts/compile-gschema.py scripts/cargo.sh scripts/test.sh
|
2018-09-23 02:00:08 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-09-23 02:00:08 +01:00
|
|
|
description = "Listen to your favorite podcasts";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://wiki.gnome.org/Apps/Podcasts";
|
2021-03-14 16:25:45 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2020-04-01 13:40:51 +01:00
|
|
|
maintainers = teams.gnome.members;
|
2018-09-23 02:00:08 +01:00
|
|
|
platforms = platforms.unix;
|
2021-03-13 16:17:14 +00:00
|
|
|
# couldn't read /build/source/build/podcasts-gtk/resources/resources.gresource: No such file or directory (os error 2)
|
|
|
|
broken = true;
|
2018-09-23 02:00:08 +01:00
|
|
|
};
|
|
|
|
}
|