1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/desktops/gnome-3/apps/gnome-music/default.nix

53 lines
1.7 KiB
Nix
Raw Normal View History

2019-05-22 12:03:39 +01:00
{ stdenv, meson, ninja, gettext, fetchurl, gdk-pixbuf, tracker
2018-03-15 12:22:33 +00:00
, libxml2, python3, libnotify, wrapGAppsHook, libmediaart
, gobject-introspection, gnome-online-accounts, grilo, grilo-plugins
, pkgconfig, gtk3, glib, desktop-file-utils, appstream-glib
, itstool, gnome3, gst_all_1, libdazzle, libsoup, gsettings-desktop-schemas }:
2018-03-15 12:22:33 +00:00
python3.pkgs.buildPythonApplication rec {
pname = "gnome-music";
2019-09-02 17:45:02 +01:00
version = "3.34.0";
2018-03-15 12:22:33 +00:00
format = "other";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2019-09-02 17:45:02 +01:00
sha256 = "1a566ifx08clfm22qzdh1i6w8cr2kv7avqzkk6zgc5adba0vmzx4";
};
nativeBuildInputs = [ meson ninja gettext itstool pkgconfig libxml2 wrapGAppsHook desktop-file-utils appstream-glib gobject-introspection ];
2018-03-15 12:22:33 +00:00
buildInputs = with gst_all_1; [
gtk3 glib libmediaart gnome-online-accounts gobject-introspection
2019-05-22 12:03:39 +01:00
gdk-pixbuf gnome3.adwaita-icon-theme python3
grilo grilo-plugins libnotify libdazzle libsoup
gsettings-desktop-schemas tracker
2018-03-29 10:09:26 +01:00
gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad gst-plugins-ugly
2018-03-15 12:22:33 +00:00
];
propagatedBuildInputs = with python3.pkgs; [ pycairo dbus-python pygobject3 ];
2018-03-15 12:22:33 +00:00
postPatch = ''
for f in meson_post_conf.py meson_post_install.py; do
chmod +x $f
patchShebangs $f
done
'';
2018-03-15 12:22:33 +00:00
doCheck = false;
2018-03-15 12:22:33 +00:00
passthru = {
updateScript = gnome3.updateScript {
packageName = pname;
attrPath = "gnome3.${pname}";
};
};
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Apps/Music;
description = "Music player and management application for the GNOME desktop environment";
maintainers = gnome3.maintainers;
license = licenses.gpl2;
platforms = platforms.linux;
};
}