about summary refs log tree commit diff
path: root/pkgs/applications/video/xplayer/plparser.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/video/xplayer/plparser.nix')
-rw-r--r--pkgs/applications/video/xplayer/plparser.nix44
1 files changed, 0 insertions, 44 deletions
diff --git a/pkgs/applications/video/xplayer/plparser.nix b/pkgs/applications/video/xplayer/plparser.nix
deleted file mode 100644
index 67e394968da54..0000000000000
--- a/pkgs/applications/video/xplayer/plparser.nix
+++ /dev/null
@@ -1,44 +0,0 @@
-{ stdenv
-, lib
-, fetchFromGitHub
-, meson
-, ninja
-, gobject-introspection
-, gmime3
-, libxml2
-, libsoup
-, pkg-config
-}:
-
-stdenv.mkDerivation rec {
-  pname = "xplayer-plparser";
-  version = "1.0.3";
-
-  src = fetchFromGitHub {
-    owner = "linuxmint";
-    repo = pname;
-    rev = version;
-    sha256 = "6GMKsIpyQdiyHPxrjWHAHvuCouJxrAcYPIo9u6TLOA4=";
-  };
-
-  nativeBuildInputs = [
-    meson
-    ninja
-    pkg-config
-    gobject-introspection
-  ];
-
-  buildInputs = [
-    gmime3
-    libxml2
-    libsoup
-  ];
-
-  meta = with lib; {
-    description = "Playlist parsing library for xplayer";
-    homepage = "https://github.com/linuxmint/xplayer-plparser";
-    maintainers = with maintainers; [ tu-maurice bobby285271 ];
-    license = licenses.lgpl2Plus;
-    platforms = platforms.linux;
-  };
-}