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

37 lines
1.1 KiB
Nix
Raw Normal View History

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