2019-08-30 03:44:33 +02:00
|
|
|
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, appstream-glib
|
|
|
|
, wrapGAppsHook, pythonPackages, gtk3, gnome3, gobject-introspection
|
|
|
|
, libnotify, libsecret, gst_all_1 }:
|
2015-04-22 04:15:13 +02:00
|
|
|
|
2016-02-19 13:12:11 +01:00
|
|
|
pythonPackages.buildPythonApplication rec {
|
2016-01-27 17:24:23 +01:00
|
|
|
pname = "pithos";
|
2019-11-02 20:31:48 +01:00
|
|
|
version = "1.5.0";
|
2015-04-22 04:15:13 +02:00
|
|
|
|
2015-09-23 14:00:26 +02:00
|
|
|
src = fetchFromGitHub {
|
2016-01-27 17:24:23 +01:00
|
|
|
owner = pname;
|
|
|
|
repo = pname;
|
2015-09-23 14:00:26 +02:00
|
|
|
rev = version;
|
2019-11-02 20:31:48 +01:00
|
|
|
sha256 = "10nnm55ql86x1qfmq6dx9a1igf7myjxibmvyhd7fyv06vdhfifgy";
|
2015-04-22 04:15:13 +02:00
|
|
|
};
|
|
|
|
|
2019-08-30 03:44:33 +02:00
|
|
|
format = "other";
|
2016-05-28 16:10:06 +02:00
|
|
|
|
2015-04-22 04:15:13 +02:00
|
|
|
postPatch = ''
|
2019-08-30 03:44:33 +02:00
|
|
|
chmod +x meson_post_install.py
|
|
|
|
patchShebangs meson_post_install.py
|
2015-04-22 04:15:13 +02:00
|
|
|
'';
|
|
|
|
|
2019-08-30 03:44:33 +02:00
|
|
|
nativeBuildInputs = [ meson ninja pkgconfig appstream-glib wrapGAppsHook ];
|
2015-09-26 20:01:08 +02:00
|
|
|
|
2015-09-23 14:00:26 +02:00
|
|
|
propagatedBuildInputs =
|
2019-08-30 03:44:33 +02:00
|
|
|
[ gtk3 gobject-introspection libnotify libsecret gnome3.adwaita-icon-theme ] ++
|
2015-09-23 14:00:26 +02:00
|
|
|
(with gst_all_1; [ gstreamer gst-plugins-base gst-plugins-good gst-plugins-ugly gst-plugins-bad ]) ++
|
|
|
|
(with pythonPackages; [ pygobject3 pylast ]);
|
2015-04-22 04:15:13 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2015-09-23 14:00:26 +02:00
|
|
|
description = "Pandora Internet Radio player for GNOME";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://pithos.github.io/";
|
2015-04-22 04:15:13 +02:00
|
|
|
license = licenses.gpl3;
|
2019-03-12 23:45:33 +01:00
|
|
|
maintainers = with maintainers; [ obadz ];
|
2015-04-22 04:15:13 +02:00
|
|
|
};
|
|
|
|
}
|