nixpkgs/pkgs/applications/audio/gnome-podcasts/default.nix

84 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv
, lib
, rustPlatform
, fetchFromGitLab
, meson
, ninja
, gettext
, python3
, pkg-config
, glib
2021-05-18 15:03:43 +00:00
, libhandy
, gtk3
2021-05-18 15:03:43 +00:00
, appstream-glib
, desktop-file-utils
, dbus
, openssl
, sqlite
, gst_all_1
, wrapGAppsHook
}:
2018-09-23 01:00:08 +00:00
stdenv.mkDerivation rec {
pname = "gnome-podcasts";
2021-05-18 15:03:43 +00:00
version = "0.4.9";
2018-09-23 01:00:08 +00:00
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "World";
repo = "podcasts";
rev = version;
2021-05-18 15:03:43 +00:00
sha256 = "1ah59ac3xm3sqai8zhil8ar30pviw83cm8in1n4id77rv24xkvgm";
2018-09-23 01:00:08 +00:00
};
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}";
2021-05-18 15:03:43 +00:00
sha256 = "1iihpfvkli09ysn46cnif53xizkwzk0m91bljmlzsygp3ip5i5yw";
};
2018-09-23 01:00:08 +00:00
nativeBuildInputs = [
meson
ninja
pkg-config
gettext
python3
rustPlatform.rust.cargo
rustPlatform.cargoSetupHook
rustPlatform.rust.rustc
wrapGAppsHook
2020-03-29 07:30:16 +00:00
glib
2018-09-23 01:00:08 +00:00
];
2018-09-23 01:00:08 +00:00
buildInputs = [
2021-05-18 15:03:43 +00:00
appstream-glib
desktop-file-utils
glib
gtk3
2021-05-18 15:03:43 +00:00
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
2018-09-23 01:00:08 +00:00
];
# tests require network
doCheck = false;
2018-09-23 01:00:08 +00:00
postPatch = ''
chmod +x scripts/compile-gschema.py # patchShebangs requires executable file
patchShebangs scripts/compile-gschema.py scripts/cargo.sh scripts/test.sh
2018-09-23 01:00:08 +00:00
'';
meta = with lib; {
2018-09-23 01:00:08 +00:00
description = "Listen to your favorite podcasts";
homepage = "https://wiki.gnome.org/Apps/Podcasts";
license = licenses.gpl3Plus;
maintainers = teams.gnome.members;
2018-09-23 01:00:08 +00:00
platforms = platforms.unix;
};
}