python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / video / smplayer / default.nix
blob9ed563a690386de59530dc9658bb67ceeb9a510f
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , qmake
5 , qtscript
6 , wrapQtAppsHook
7 }:
9 stdenv.mkDerivation rec {
10   pname = "smplayer";
11   version = "22.7.0";
13   src = fetchFromGitHub {
14     owner = "smplayer-dev";
15     repo = pname;
16     rev = "v${version}";
17     hash = "sha256-vU+M5aCCGSA+IwJXTLMYvno/Qei+5Hwck3Q/Ah7N09s=";
18   };
20   nativeBuildInputs = [
21     qmake
22     wrapQtAppsHook
23   ];
25   buildInputs = [
26     qtscript
27   ];
29   dontUseQmakeConfigure = true;
31   makeFlags = [
32     "PREFIX=${placeholder "out"}"
33   ];
35   meta = with lib; {
36     homepage = "https://www.smplayer.info";
37     description = "A complete front-end for MPlayer";
38     longDescription = ''
39       SMPlayer is a free media player for Windows and Linux with built-in codecs
40       that can play virtually all video and audio formats. It doesn't need any
41       external codecs. Just install SMPlayer and you'll be able to play all
42       formats without the hassle to find and install codec packs.
44       One of the most interesting features of SMPlayer: it remembers the
45       settings of all files you play. So you start to watch a movie but you have
46       to leave... don't worry, when you open that movie again it will be resumed
47       at the same point you left it, and with the same settings: audio track,
48       subtitles, volume...
50       SMPlayer is a graphical user interface (GUI) for the award-winning
51       MPlayer, which is capable of playing almost all known video and audio
52       formats. But apart from providing access for the most common and useful
53       options of MPlayer, SMPlayer adds other interesting features like the
54       possibility to play Youtube videos or download subtitles.
55     '';
56     license = licenses.gpl3Plus;
57     maintainers = with maintainers; [ AndersonTorres ];
58     platforms = platforms.linux;
59   };
61 # TODO [ AndersonTorres ]: some form of wrapping mplayer/mpv around it