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

27 lines
716 B
Nix
Raw Normal View History

{ lib, mkDerivation, fetchurl, qmake, qtscript }:
2013-06-23 09:48:21 +00:00
mkDerivation rec {
pname = "smplayer";
2019-11-29 15:40:56 +00:00
version = "19.10.2";
2013-06-23 09:48:21 +00:00
src = fetchurl {
url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.bz2";
2019-11-29 15:40:56 +00:00
sha256 = "0i2c15yxk4by2zyjhb7n08larz9pmpa6zw383aybjxqh0nd9zv9p";
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
makeFlags = [ "PREFIX=${placeholder "out"}" ];
2013-06-23 09:48:21 +00:00
meta = {
description = "A complete front-end for MPlayer";
longDescription = "Either mplayer or mpv should also be installed for smplayer to play medias";
homepage = https://www.smplayer.info;
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.linux;
2013-06-23 09:48:21 +00:00
};
}