summary refs log tree commit diff
path: root/pkgs/applications/audio/mopidy
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2023-05-14 18:29:31 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2023-05-23 13:27:10 +0200
commit0000076781762ded383aa820c15e820467f199a5 (patch)
treec77b97090204a1f942aa75b431f9a7e22c3cae15 /pkgs/applications/audio/mopidy
parentd441fbe7a51a2afc443bf874b8192a01b33b9d80 (diff)
downloadnixpkgs-0000076781762ded383aa820c15e820467f199a5.tar
nixpkgs-0000076781762ded383aa820c15e820467f199a5.tar.gz
nixpkgs-0000076781762ded383aa820c15e820467f199a5.tar.bz2
nixpkgs-0000076781762ded383aa820c15e820467f199a5.tar.lz
nixpkgs-0000076781762ded383aa820c15e820467f199a5.tar.xz
nixpkgs-0000076781762ded383aa820c15e820467f199a5.tar.zst
nixpkgs-0000076781762ded383aa820c15e820467f199a5.zip
mopidy: use headless GApps wrapper, cleanup meta.description
Diffstat (limited to 'pkgs/applications/audio/mopidy')
-rw-r--r--pkgs/applications/audio/mopidy/mopidy.nix9
1 files changed, 3 insertions, 6 deletions
diff --git a/pkgs/applications/audio/mopidy/mopidy.nix b/pkgs/applications/audio/mopidy/mopidy.nix
index 78e00655ad3..697f5e58a55 100644
--- a/pkgs/applications/audio/mopidy/mopidy.nix
+++ b/pkgs/applications/audio/mopidy/mopidy.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchFromGitHub, pythonPackages, wrapGAppsHook
+{ lib, stdenv, fetchFromGitHub, pythonPackages, wrapGAppsNoGuiHook
 , gst_all_1, glib-networking, gobject-introspection
 }:
 
@@ -13,7 +13,7 @@ pythonPackages.buildPythonApplication rec {
     sha256 = "sha256-IUQe5WH2vsrAOgokhTNVVM3lnJXphT2xNGu27hWBLSo=";
   };
 
-  nativeBuildInputs = [ wrapGAppsHook ];
+  nativeBuildInputs = [ wrapGAppsNoGuiHook ];
 
   buildInputs = with gst_all_1; [
     glib-networking
@@ -44,10 +44,7 @@ pythonPackages.buildPythonApplication rec {
 
   meta = with lib; {
     homepage = "https://www.mopidy.com/";
-    description = ''
-      An extensible music server that plays music from local disk, Spotify,
-      SoundCloud, and more
-    '';
+    description = "An extensible music server that plays music from local disk, Spotify, SoundCloud, and more";
     license = licenses.asl20;
     maintainers = [ maintainers.fpletz ];
     hydraPlatforms = [];