2019-08-07 18:40:57 +02:00
|
|
|
{ lib, mkDerivation, fetchurl, qmake, qtscript }:
|
2013-06-23 11:48:21 +02:00
|
|
|
|
2019-08-07 18:40:57 +02:00
|
|
|
mkDerivation rec {
|
2019-11-03 16:33:19 +01:00
|
|
|
pname = "smplayer";
|
2020-05-10 15:37:22 +02:00
|
|
|
version = "20.4.2";
|
2013-06-23 11:48:21 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-11-03 16:33:19 +01:00
|
|
|
url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.bz2";
|
2020-05-10 15:37:22 +02:00
|
|
|
sha256 = "0kqdx6q2274gm83rycvdcglka60ymdk4iw2lc39iw7z1zgsv6ky3";
|
2013-06-23 11:48:21 +02:00
|
|
|
};
|
|
|
|
|
2017-01-14 13:44:19 +01:00
|
|
|
buildInputs = [ qtscript ];
|
2017-06-02 17:40:19 +02:00
|
|
|
nativeBuildInputs = [ qmake ];
|
2016-04-28 23:37:16 +02:00
|
|
|
|
|
|
|
dontUseQmakeConfigure = true;
|
2013-06-23 11:48:21 +02:00
|
|
|
|
2019-11-03 16:33:19 +01:00
|
|
|
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
2013-06-23 11:48:21 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A complete front-end for MPlayer";
|
2019-11-03 16:33:19 +01:00
|
|
|
longDescription = "Either mplayer or mpv should also be installed for smplayer to play medias";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://www.smplayer.info";
|
2019-08-07 18:40:57 +02:00
|
|
|
license = lib.licenses.gpl3Plus;
|
|
|
|
platforms = lib.platforms.linux;
|
2013-06-23 11:48:21 +02:00
|
|
|
};
|
|
|
|
}
|