about summary refs log tree commit diff
path: root/pkgs/misc
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2018-11-09 12:17:14 +0100
committerGitHub <noreply@github.com>2018-11-09 12:17:14 +0100
commitd719a6eddcd5e9c604c0a98a2b49cae1da637c67 (patch)
tree3833317dcca4e12ff471fcb33ac7739450bf564d /pkgs/misc
parent8af2cdbe3a84cce21c836393368463a6810f962e (diff)
parent0f9a1dc25e3b870df3f1e3cc2cd930f1562f6c48 (diff)
downloadnixlib-d719a6eddcd5e9c604c0a98a2b49cae1da637c67.tar
nixlib-d719a6eddcd5e9c604c0a98a2b49cae1da637c67.tar.gz
nixlib-d719a6eddcd5e9c604c0a98a2b49cae1da637c67.tar.bz2
nixlib-d719a6eddcd5e9c604c0a98a2b49cae1da637c67.tar.lz
nixlib-d719a6eddcd5e9c604c0a98a2b49cae1da637c67.tar.xz
nixlib-d719a6eddcd5e9c604c0a98a2b49cae1da637c67.tar.zst
nixlib-d719a6eddcd5e9c604c0a98a2b49cae1da637c67.zip
Merge pull request #49889 from worldofpeace/lollypop-drop-portal
lollypop-portal: drop
Diffstat (limited to 'pkgs/misc')
-rw-r--r--pkgs/misc/lollypop-portal/default.nix61
1 files changed, 0 insertions, 61 deletions
diff --git a/pkgs/misc/lollypop-portal/default.nix b/pkgs/misc/lollypop-portal/default.nix
deleted file mode 100644
index dfcdebace3b0..000000000000
--- a/pkgs/misc/lollypop-portal/default.nix
+++ /dev/null
@@ -1,61 +0,0 @@
-{ stdenv, fetchFromGitLab, meson, ninja, pkgconfig
-, python3, gnome3, gst_all_1, gtk3, libnotify
-, kid3, easytag, gobjectIntrospection, wrapGAppsHook }:
-
-python3.pkgs.buildPythonApplication rec {
-  name = "lollypop-portal-${version}";
-  version = "0.9.7";
-
-  format = "other";
-  doCheck = false;
-
-  src = fetchFromGitLab {
-     domain = "gitlab.gnome.org";
-     owner = "gnumdk";
-     repo = name;
-     rev = version;
-     sha256 = "0rn5xmh6391i9l69y613pjad3pzdilskr2xjfcir4vpk8wprvph3";
-  };
-
-  nativeBuildInputs = [
-    gobjectIntrospection
-    meson
-    ninja
-    pkgconfig
-    wrapGAppsHook
-  ];
-
-  buildInputs = [
-    gnome3.gnome-settings-daemon
-    gnome3.libsecret
-    gnome3.totem-pl-parser
-    gst_all_1.gst-plugins-base
-    gst_all_1.gstreamer
-    gtk3
-    libnotify
-    python3
-  ];
-
-  pythonPath = with python3.pkgs; [
-    pycairo
-    pydbus
-    pygobject3
-  ];
-
-  preFixup = ''
-    buildPythonPath "$out/libexec/lollypop-portal $pythonPath"
-    patchPythonScript "$out/libexec/lollypop-portal"
-
-    gappsWrapperArgs+=(
-      --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;
-  };
-}