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

37 lines
1.1 KiB
Nix
Raw Normal View History

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