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

27 lines
609 B
Nix
Raw Normal View History

2017-06-02 15:40:19 +00:00
{ stdenv, fetchurl, qmake, qtscript }:
2013-06-23 09:48:21 +00:00
stdenv.mkDerivation rec {
2017-09-09 12:45:26 +00:00
name = "smplayer-17.9.0";
2013-06-23 09:48:21 +00:00
src = fetchurl {
url = "mirror://sourceforge/smplayer/${name}.tar.bz2";
2017-09-09 12:45:26 +00:00
sha256 = "0s9856cmwl829d2xc2ycf97phpv4a2d39ybmnbhsrb07jq5hkw1a";
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";
homepage = http://smplayer.sourceforge.net/;
license = stdenv.lib.licenses.gpl3Plus;
platforms = stdenv.lib.platforms.linux;
2013-06-23 09:48:21 +00:00
};
}