2019-08-07 16:40:57 +00:00
|
|
|
{ lib, mkDerivation, fetchurl, qmake, qtscript }:
|
2013-06-23 09:48:21 +00:00
|
|
|
|
2019-08-07 16:40:57 +00:00
|
|
|
mkDerivation rec {
|
2019-05-24 10:06:22 +00:00
|
|
|
name = "smplayer-19.5.0";
|
2013-06-23 09:48:21 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/smplayer/${name}.tar.bz2";
|
2019-05-24 10:06:22 +00:00
|
|
|
sha256 = "1xda9pbrc3dfbs71n5l8yszlcywz9456mwkv52vmn8lszhvjpjxm";
|
2013-06-23 09:48:21 +00:00
|
|
|
};
|
|
|
|
|
2017-01-14 12:44:19 +00:00
|
|
|
buildInputs = [ qtscript ];
|
2017-06-02 15:40:19 +00:00
|
|
|
nativeBuildInputs = [ qmake ];
|
2016-04-28 21:37:16 +00:00
|
|
|
|
|
|
|
dontUseQmakeConfigure = true;
|
2013-06-23 09:48:21 +00:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
makeFlags="PREFIX=$out"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A complete front-end for MPlayer";
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = http://smplayer.sourceforge.net/;
|
2019-08-07 16:40:57 +00:00
|
|
|
license = lib.licenses.gpl3Plus;
|
|
|
|
platforms = lib.platforms.linux;
|
2013-06-23 09:48:21 +00:00
|
|
|
};
|
|
|
|
}
|