mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
c70ad805d2
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/smplayer/versions
27 lines
610 B
Nix
27 lines
610 B
Nix
{ stdenv, fetchurl, qmake, qtscript }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "smplayer-18.10.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/smplayer/${name}.tar.bz2";
|
|
sha256 = "1sql1rd4h74smkapjf5c686zbdqqaf44h7k7z5bxfvfcsad7rzrd";
|
|
};
|
|
|
|
buildInputs = [ qtscript ];
|
|
nativeBuildInputs = [ qmake ];
|
|
|
|
dontUseQmakeConfigure = true;
|
|
|
|
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;
|
|
};
|
|
}
|