summary refs log tree commit diff
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@users.noreply.github.com>2018-07-12 20:42:34 -0400
committerworldofpeace <worldofpeace@users.noreply.github.com>2018-07-13 06:49:13 -0400
commit0761bdbc291ca1f0c7f4795b7245607e8cf09426 (patch)
treecbdd360d6b6b6217dfbb5117666563fa6c959bd7
parent629c9011b4e1f2192b19cb06b572a9fa3775a95c (diff)
downloadnixlib-0761bdbc291ca1f0c7f4795b7245607e8cf09426.tar
nixlib-0761bdbc291ca1f0c7f4795b7245607e8cf09426.tar.gz
nixlib-0761bdbc291ca1f0c7f4795b7245607e8cf09426.tar.bz2
nixlib-0761bdbc291ca1f0c7f4795b7245607e8cf09426.tar.lz
nixlib-0761bdbc291ca1f0c7f4795b7245607e8cf09426.tar.xz
nixlib-0761bdbc291ca1f0c7f4795b7245607e8cf09426.tar.zst
nixlib-0761bdbc291ca1f0c7f4795b7245607e8cf09426.zip
lollypop-portal: init at 0.9.7
-rw-r--r--pkgs/misc/lollypop-portal/default.nix60
-rw-r--r--pkgs/top-level/all-packages.nix3
2 files changed, 63 insertions, 0 deletions
diff --git a/pkgs/misc/lollypop-portal/default.nix b/pkgs/misc/lollypop-portal/default.nix
new file mode 100644
index 000000000000..f9cd9ae7df57
--- /dev/null
+++ b/pkgs/misc/lollypop-portal/default.nix
@@ -0,0 +1,60 @@
+{ stdenv, fetchFromGitLab, meson, ninja, pkgconfig
+, python36Packages, gnome3, gst_all_1, gtk3, libnotify
+, kid3, easytag, gobjectIntrospection, wrapGAppsHook }:
+
+stdenv.mkDerivation rec {
+  name = "lollypop-portal";
+  version = "0.9.7";
+
+  src = fetchFromGitLab {
+     domain = "gitlab.gnome.org";
+     owner = "gnumdk";
+     repo = name;
+     rev = version;
+     sha256 = "0rn5xmh6391i9l69y613pjad3pzdilskr2xjfcir4vpk8wprvph3";
+  };
+
+  nativeBuildInputs = [
+    gobjectIntrospection
+    meson
+    ninja
+    pkgconfig
+    python36Packages.wrapPython
+    wrapGAppsHook
+  ];
+
+  buildInputs = [
+    gnome3.totem-pl-parser
+    gnome3.libsecret
+    gnome3.gnome-settings-daemon
+
+    gst_all_1.gstreamer
+    gst_all_1.gst-plugins-base
+
+    gtk3
+    libnotify
+  ];
+
+  pythonPath = with python36Packages; [
+    pygobject3
+    pydbus
+    pycairo
+  ];
+
+  preFixup = ''
+    buildPythonPath "$out/libexec/lollypop-portal $pythonPath"
+
+    gappsWrapperArgs+=(
+      --prefix PYTHONPATH : "$program_PYTHONPATH"
+      --prefix PATH : "${stdenv.lib.makeBinPath [ easytag kid3 ]}"
+    )
+  '';
+
+  meta = with stdenv.lib; {
+    description = "DBus Service for Lollypop";
+    homepage = https://gitlab.gnome.org/gnumdk/lollypop-portal;
+    license = licenses.gpl3Plus;
+    maintainers = with maintainers; [ worldofpeace ];
+    platforms = platforms.linux;
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index d4399955ee6c..3ffab85cb612 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -21204,6 +21204,9 @@ with pkgs;
   lilypond-with-fonts = callPackage ../misc/lilypond/with-fonts.nix {
     lilypond = lilypond-unstable;
   };
+
+  lollypop-portal = callPackages ../misc/lollypop-portal { };
+
   openlilylib-fonts = callPackage ../misc/lilypond/fonts.nix { };
 
   mailcore2 = callPackage ../development/libraries/mailcore2 {