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

83 lines
1.5 KiB
Nix
Raw Normal View History

{ lib, stdenv
, rustPlatform
, fetchFromGitLab
, fetchpatch
, meson
, ninja
, gettext
, cargo
, rustc
, python3
, pkg-config
, glib
2020-10-03 22:58:12 +00:00
, libhandy_0
, gtk3
, dbus
, openssl
, sqlite
, gst_all_1
, wrapGAppsHook
}:
2018-09-23 01:00:08 +00:00
rustPlatform.buildRustPackage rec {
2020-07-13 05:15:56 +00:00
version = "0.4.8";
pname = "gnome-podcasts";
2018-09-23 01:00:08 +00:00
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "World";
repo = "podcasts";
rev = version;
2020-07-13 05:15:56 +00:00
sha256 = "0y2332zjq7vf1v38wzwz98fs19vpzy9kl7y0xbdzqr303l59hjb1";
2018-09-23 01:00:08 +00:00
};
2020-07-13 05:15:56 +00:00
cargoSha256 = "1jbii9k4bkrivdk1ffr6556q1sgk9j4jbzwnn8vbxmksyl1x328q";
2018-09-23 01:00:08 +00:00
nativeBuildInputs = [
meson
ninja
pkg-config
gettext
cargo
rustc
python3
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 = [
glib
gtk3
2020-10-03 22:58:12 +00:00
libhandy_0
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
];
# use Meson/Ninja phases
configurePhase = null;
buildPhase = null;
checkPhase = null;
installPhase = null;
# 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";
2018-09-23 01:00:08 +00:00
license = licenses.gpl3;
maintainers = teams.gnome.members;
2018-09-23 01:00:08 +00:00
platforms = platforms.unix;
};
}