2015-12-20 06:38:39 +01:00
|
|
|
{ stdenv, fetchurl, qtscript }:
|
2013-06-23 11:48:21 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-12-02 19:45:26 +01:00
|
|
|
name = "smplayer-15.11.0";
|
2013-06-23 11:48:21 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/smplayer/${name}.tar.bz2";
|
2015-12-02 19:45:26 +01:00
|
|
|
sha256 = "1h8r5xjaq7p78raw1v29gsrcv221lzl8m2i2qls3khc65kx032cn";
|
2013-06-23 11:48:21 +02:00
|
|
|
};
|
|
|
|
|
2014-10-11 02:23:01 +02:00
|
|
|
patches = [ ./basegui.cpp.patch ];
|
|
|
|
|
2015-12-20 06:38:39 +01:00
|
|
|
buildInputs = [ qtscript ];
|
2013-06-23 11:48:21 +02:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
makeFlags="PREFIX=$out"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A complete front-end for MPlayer";
|
|
|
|
homepage = "http://smplayer.sourceforge.net/";
|
2013-06-23 15:26:43 +02:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2013-06-23 11:48:21 +02:00
|
|
|
};
|
|
|
|
}
|