nixpkgs-suyu/pkgs/applications/audio/lollypop/default.nix

72 lines
1.5 KiB
Nix
Raw Normal View History

2018-09-12 08:07:39 +02:00
{ stdenv, fetchgit, meson, ninja, pkgconfig
, python3, gtk3, gst_all_1, libsecret, libsoup
, appstream-glib, desktop-file-utils, totem-pl-parser
, gobject-introspection, wrapGAppsHook }:
2018-06-16 02:17:01 +02:00
2018-09-12 08:07:39 +02:00
python3.pkgs.buildPythonApplication rec {
2018-12-12 09:08:56 +01:00
pname = "lollypop";
version = "0.9.915";
2018-06-16 02:17:01 +02:00
2018-09-12 08:07:39 +02:00
format = "other";
doCheck = false;
2018-06-16 02:17:01 +02:00
src = fetchgit {
url = "https://gitlab.gnome.org/World/lollypop";
rev = "refs/tags/${version}";
fetchSubmodules = true;
sha256 = "133qmqb015ghif4d4zh6sf8585fpfgbq00rv6qdj5xn13wziipwh";
2018-06-16 02:17:01 +02:00
};
2019-01-25 20:00:47 +01:00
nativeBuildInputs = [
appstream-glib
2018-06-16 02:17:01 +02:00
desktop-file-utils
gobject-introspection
2018-06-16 02:17:01 +02:00
meson
ninja
pkgconfig
wrapGAppsHook
];
2018-09-12 08:07:39 +02:00
buildInputs = with gst_all_1; [
gobject-introspection
2018-09-12 08:07:39 +02:00
gst-libav
gst-plugins-bad
gst-plugins-base
gst-plugins-good
gst-plugins-ugly
2018-06-16 02:17:01 +02:00
gstreamer
2018-09-12 08:07:39 +02:00
gtk3
libsecret
libsoup
totem-pl-parser
2018-09-12 08:07:39 +02:00
];
2018-06-16 02:17:01 +02:00
2018-12-12 09:08:56 +01:00
propagatedBuildInputs = with python3.pkgs; [
2018-06-16 02:17:01 +02:00
beautifulsoup4
gst-python
pillow
pycairo
pydbus
pygobject3
pylast
];
postPatch = ''
2018-09-12 08:07:39 +02:00
chmod +x meson_post_install.py
patchShebangs meson_post_install.py
'';
preFixup = ''
2018-12-12 09:08:56 +01:00
buildPythonPath "$out $propagatedBuildInputs"
2018-09-12 08:07:39 +02:00
patchPythonScript "$out/libexec/lollypop-sp"
2018-06-16 02:17:01 +02:00
'';
meta = with stdenv.lib; {
description = "A modern music player for GNOME";
2018-12-12 09:08:56 +01:00
homepage = https://wiki.gnome.org/Apps/Lollypop;
license = licenses.gpl3Plus;
2018-06-16 02:17:01 +02:00
maintainers = with maintainers; [ worldofpeace ];
2018-12-12 09:08:56 +01:00
platforms = platforms.linux;
2018-06-16 02:17:01 +02:00
};
}