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
, wrapGAppsHook, pythonPackages, gtk3, gnome, gobject-introspection
2019-08-30 03:44:33 +02:00
, libnotify, libsecret, gst_all_1 }:
2015-04-22 04:15:13 +02:00
pythonPackages.buildPythonApplication rec {
2016-01-27 17:24:23 +01:00
pname = "pithos";
2022-01-19 09:16:32 +01:00
version = "1.5.1";
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;
2022-01-19 09:16:32 +01:00
sha256 = "03j04b1mk2fq0ni2ydpw40fdd36k545z8a1pq9x5c779080cwpla";
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
'';
nativeBuildInputs = [ meson ninja pkg-config appstream-glib wrapGAppsHook ];
2015-09-26 20:01:08 +02:00
2015-09-23 14:00:26 +02:00
propagatedBuildInputs =
[ gtk3 gobject-introspection libnotify libsecret gnome.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 lib; {
2015-09-23 14:00:26 +02:00
description = "Pandora Internet Radio player for GNOME";
homepage = "https://pithos.github.io/";
2015-04-22 04:15:13 +02:00
license = licenses.gpl3;
maintainers = with maintainers; [ obadz ];
2015-04-22 04:15:13 +02:00
};
}