nixpkgs/pkgs/applications/audio/rhythmbox/default.nix

103 lines
2.2 KiB
Nix
Raw Normal View History

2021-07-10 08:58:20 +02:00
{ lib, stdenv, fetchurl, pkg-config, fetchFromGitLab
2016-07-21 19:06:27 +02:00
, python3
, perl
, perlPackages
, gtk3
, intltool
2019-03-23 05:50:12 +01:00
, libpeas
2016-07-21 19:06:27 +02:00
, libsoup
, libsecret
, libnotify
2021-07-10 08:58:20 +02:00
, libdmapsharing
, gnome
, totem-pl-parser
2016-07-21 19:06:27 +02:00
, tdb
, json-glib
2016-07-21 19:06:27 +02:00
, itstool
, wrapGAppsHook
, gst_all_1
, gst_plugins ? with gst_all_1; [ gst-plugins-good gst-plugins-ugly ]
}:
let
2021-07-10 08:58:20 +02:00
# The API version of libdmapsharing required by rhythmbox 3.4.4 is 3.0.
# This PR would solve the issue:
# https://gitlab.gnome.org/GNOME/rhythmbox/-/merge_requests/12
# Unfortunately applying this patch produces a rhythmbox which
# cannot fetch data from DAAP shares.
libdmapsharing_3 = libdmapsharing.overrideAttrs (old: rec {
version = "2.9.41";
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "GNOME";
repo = old.pname;
rev = "${lib.toUpper old.pname}_${lib.replaceStrings ["."] ["_"] version}";
sha256 = "05kvrzf0cp3mskdy6iv7zqq24qdczl800q2dn1h4bk3d9wchgm4p";
};
});
2016-07-21 19:06:27 +02:00
in stdenv.mkDerivation rec {
pname = "rhythmbox";
version = "3.4.4";
2016-07-21 19:06:27 +02:00
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2020-01-30 09:39:02 +01:00
sha256 = "142xcvw4l19jyr5i72nbnrihs953pvrrzcbijjn9dxmxszbv03pf";
2016-07-21 19:06:27 +02:00
};
2018-03-03 01:24:47 +01:00
nativeBuildInputs = [
pkg-config
2018-03-03 01:24:47 +01:00
intltool perl perlPackages.XMLParser
itstool
wrapGAppsHook
];
2016-07-21 19:06:27 +02:00
buildInputs = [
python3
libsoup
tdb
json-glib
2016-07-21 19:06:27 +02:00
gtk3
2019-03-23 05:50:12 +01:00
libpeas
totem-pl-parser
gnome.adwaita-icon-theme
2016-07-21 19:06:27 +02:00
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
gst_all_1.gst-plugins-bad
gst_all_1.gst-plugins-ugly
gst_all_1.gst-libav
2021-07-10 08:58:20 +02:00
libdmapsharing_3 # necessary for daap support
libsecret
libnotify
2016-07-21 19:06:27 +02:00
] ++ gst_plugins;
configureFlags = [
"--enable-daap"
"--enable-libnotify"
"--with-libsecret"
];
2021-07-10 08:58:20 +02:00
2016-07-21 19:06:27 +02:00
enableParallelBuilding = true;
2018-03-03 01:24:47 +01:00
passthru = {
updateScript = gnome.updateScript {
2018-03-03 01:24:47 +01:00
packageName = pname;
versionPolicy = "none";
};
};
meta = with lib; {
homepage = "https://wiki.gnome.org/Apps/Rhythmbox";
2016-07-21 19:06:27 +02:00
description = "A music playing application for GNOME";
license = licenses.gpl2Plus;
2016-07-21 19:06:27 +02:00
platforms = platforms.linux;
maintainers = [ maintainers.rasendubi ];
};
}