nixpkgs/pkgs/applications/video/smplayer/default.nix

27 lines
609 B
Nix
Raw Normal View History

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