summary refs log tree commit diff
path: root/pkgs/applications/audio/mpdevil
diff options
context:
space:
mode:
authorbloomvdomino <0x@ytex.de>2021-03-08 16:01:41 +0100
committerbloomvdomino <0x@ytex.de>2021-03-09 17:34:16 +0100
commit0360512a00f192e622bf4a8781c1951110853b08 (patch)
treed440c94d051b84d4e58579407eb39dd60fe3203e /pkgs/applications/audio/mpdevil
parent3061c1a1836dacfb1e2eab8b286c251c65d0d28a (diff)
downloadnixpkgs-0360512a00f192e622bf4a8781c1951110853b08.tar
nixpkgs-0360512a00f192e622bf4a8781c1951110853b08.tar.gz
nixpkgs-0360512a00f192e622bf4a8781c1951110853b08.tar.bz2
nixpkgs-0360512a00f192e622bf4a8781c1951110853b08.tar.lz
nixpkgs-0360512a00f192e622bf4a8781c1951110853b08.tar.xz
nixpkgs-0360512a00f192e622bf4a8781c1951110853b08.tar.zst
nixpkgs-0360512a00f192e622bf4a8781c1951110853b08.zip
mpdevil: init at 1.1.1
Diffstat (limited to 'pkgs/applications/audio/mpdevil')
-rw-r--r--pkgs/applications/audio/mpdevil/default.nix52
1 files changed, 52 insertions, 0 deletions
diff --git a/pkgs/applications/audio/mpdevil/default.nix b/pkgs/applications/audio/mpdevil/default.nix
new file mode 100644
index 00000000000..09256911f87
--- /dev/null
+++ b/pkgs/applications/audio/mpdevil/default.nix
@@ -0,0 +1,52 @@
+{ lib, fetchFromGitHub
+, python3Packages
+, gdk-pixbuf, glib, gobject-introspection, gtk3
+, intltool
+, wrapGAppsHook }:
+
+python3Packages.buildPythonApplication rec {
+  pname = "mpdevil";
+  version = "1.1.1";
+
+  src = fetchFromGitHub {
+    owner = "SoongNoonien";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "0l7mqv7ys05al2hds4icb32hf14fqi3n7b0f5v1yx54cbl9cqfap";
+  };
+
+  nativeBuildInputs = [
+    glib.dev gobject-introspection gtk3 intltool wrapGAppsHook
+  ];
+
+  buildInputs = [
+    gdk-pixbuf glib
+  ];
+
+  propagatedBuildInputs = with python3Packages; [
+    beautifulsoup4 distutils_extra mpd2 notify-py pygobject3 requests
+  ];
+
+  postInstall = ''
+    glib-compile-schemas $out/share/glib-2.0/schemas
+  '';
+
+  preFixup = ''
+    makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
+  '';
+
+  # Prevent double wrapping.
+  dontWrapGApps = true;
+  # Otherwise wrapGAppsHook do not pick up the dependencies correctly.
+  strictDeps = false;
+  # There aren't any checks.
+  doCheck = false;
+
+  meta = with lib; {
+    description = "A simple music browser for MPD";
+    homepage = "https://github.com/SoongNoonien/mpdevil";
+    license = licenses.gpl3Plus;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ bloomvdomino ];
+  };
+}