100 lines
1.6 KiB
Nix
100 lines
1.6 KiB
Nix
|
{ stdenv
|
||
|
, fetchFromGitHub
|
||
|
, pantheon
|
||
|
, pkgconfig
|
||
|
, meson
|
||
|
, ninja
|
||
|
, vala
|
||
|
, desktop-file-utils
|
||
|
, gtk3
|
||
|
, granite
|
||
|
, python3
|
||
|
, libgee
|
||
|
, clutter-gtk
|
||
|
, json-glib
|
||
|
, libgda
|
||
|
, libgpod
|
||
|
, libnotify
|
||
|
, libpeas
|
||
|
, libsoup
|
||
|
, zeitgeist
|
||
|
, gst_all_1
|
||
|
, taglib
|
||
|
, libdbusmenu
|
||
|
, libsignon-glib
|
||
|
, libaccounts-glib
|
||
|
, elementary-icon-theme
|
||
|
, wrapGAppsHook
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "elementary-music";
|
||
|
version = "5.0.5";
|
||
|
|
||
|
repoName = "music";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "elementary";
|
||
|
repo = repoName;
|
||
|
rev = version;
|
||
|
sha256 = "0cb0mwsp5w2bmjq8ap9mi0jvaqr9fgq00gfrkj0mzb5x5c26hrnw";
|
||
|
};
|
||
|
|
||
|
passthru = {
|
||
|
updateScript = pantheon.updateScript {
|
||
|
attrPath = "pantheon.${pname}";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
desktop-file-utils
|
||
|
meson
|
||
|
ninja
|
||
|
pkgconfig
|
||
|
python3
|
||
|
vala
|
||
|
wrapGAppsHook
|
||
|
];
|
||
|
|
||
|
buildInputs = with gst_all_1; [
|
||
|
clutter-gtk
|
||
|
elementary-icon-theme
|
||
|
granite
|
||
|
gst-plugins-bad
|
||
|
gst-plugins-base
|
||
|
gst-plugins-good
|
||
|
gst-plugins-ugly
|
||
|
gstreamer
|
||
|
gtk3
|
||
|
json-glib
|
||
|
libaccounts-glib
|
||
|
libdbusmenu
|
||
|
libgda
|
||
|
libgee
|
||
|
libgpod
|
||
|
libnotify
|
||
|
libpeas
|
||
|
libsignon-glib
|
||
|
libsoup
|
||
|
taglib
|
||
|
zeitgeist
|
||
|
];
|
||
|
|
||
|
mesonFlags = [
|
||
|
"-Dplugins=lastfm,audioplayer,cdrom,ipod"
|
||
|
];
|
||
|
|
||
|
postPatch = ''
|
||
|
chmod +x meson/post_install.py
|
||
|
patchShebangs meson/post_install.py
|
||
|
'';
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "Music player and library designed for elementary OS";
|
||
|
homepage = "https://github.com/elementary/music";
|
||
|
license = licenses.lgpl2Plus;
|
||
|
platforms = platforms.linux;
|
||
|
maintainers = pantheon.maintainers;
|
||
|
};
|
||
|
}
|