about summary refs log tree commit diff
path: root/pkgs/applications/video
diff options
context:
space:
mode:
authorPeder Bergebakken Sundt <pbsds@hotmail.com>2024-05-28 01:37:06 +0200
committerGitHub <noreply@github.com>2024-05-28 01:37:06 +0200
commitbad0d19149f9c35b4f7e969830fcf55cbc1e5662 (patch)
tree2b0b3b809da6f3d6183e1d5f0a52f4f512b3c5b5 /pkgs/applications/video
parentfc307abbd80812c51b1dbecd2871ef66916d9ce4 (diff)
parent93b021a440bd392660d990740ce91e157aee71ef (diff)
Merge pull request #311466 from atorres1985-contrib/smplayer
smplayer: 23.12.0 -> 24.5.0
Diffstat (limited to 'pkgs/applications/video')
-rw-r--r--pkgs/applications/video/smplayer/default.nix62
1 files changed, 0 insertions, 62 deletions
diff --git a/pkgs/applications/video/smplayer/default.nix b/pkgs/applications/video/smplayer/default.nix
deleted file mode 100644
index 513468cb16cf0..0000000000000
--- a/pkgs/applications/video/smplayer/default.nix
+++ /dev/null
@@ -1,62 +0,0 @@
-{ lib
-, stdenv
-, fetchFromGitHub
-, qmake
-, qtscript
-, wrapQtAppsHook
-}:
-
-stdenv.mkDerivation (finalAttrs: {
-  pname = "smplayer";
-  version = "23.12.0";
-
-  src = fetchFromGitHub {
-    owner = "smplayer-dev";
-    repo = "smplayer";
-    rev = "v${finalAttrs.version}";
-    hash = "sha256-ip4y9GF2u1yl1Ts8T9XcFg9wdXVTYXfDrrPuHLz6oSs=";
-  };
-
-  nativeBuildInputs = [
-    qmake
-    wrapQtAppsHook
-  ];
-
-  buildInputs = [
-    qtscript
-  ];
-
-  dontUseQmakeConfigure = true;
-
-  makeFlags = [
-    "PREFIX=${placeholder "out"}"
-  ];
-
-  meta = {
-    homepage = "https://www.smplayer.info";
-    description = "A complete front-end for MPlayer";
-    longDescription = ''
-      SMPlayer is a free media player for Windows and Linux with built-in codecs
-      that can play virtually all video and audio formats. It doesn't need any
-      external codecs. Just install SMPlayer and you'll be able to play all
-      formats without the hassle to find and install codec packs.
-
-      One of the most interesting features of SMPlayer: it remembers the
-      settings of all files you play. So you start to watch a movie but you have
-      to leave... don't worry, when you open that movie again it will be resumed
-      at the same point you left it, and with the same settings: audio track,
-      subtitles, volume...
-
-      SMPlayer is a graphical user interface (GUI) for the award-winning
-      MPlayer, which is capable of playing almost all known video and audio
-      formats. But apart from providing access for the most common and useful
-      options of MPlayer, SMPlayer adds other interesting features like the
-      possibility to play Youtube videos or download subtitles.
-    '';
-    changelog = "https://github.com/smplayer-dev/smplayer/releases/tag/v${finalAttrs.version}";
-    license = lib.licenses.gpl3Plus;
-    maintainers = with lib.maintainers; [ AndersonTorres ];
-    platforms = lib.platforms.linux;
-  };
-})
-# TODO [ AndersonTorres ]: create a wrapper including mplayer/mpv