29 lines
707 B
Nix
29 lines
707 B
Nix
{ lib, mkDerivation, fetchurl, qmake, qtscript, qtwebkit }:
|
|
|
|
mkDerivation rec {
|
|
version = "21.10.0";
|
|
pname = "smtube";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/smtube/SMTube/${version}/${pname}-${version}.tar.bz2";
|
|
sha256 = "sha256-ZQIUAi/YC+zsYHVhlprZ5K6NGvT6LojmdQ1Z+WCg1lU=";
|
|
};
|
|
|
|
makeFlags = [
|
|
"PREFIX=$(out)"
|
|
];
|
|
|
|
dontUseQmakeConfigure = true;
|
|
|
|
nativeBuildInputs = [ qmake ];
|
|
buildInputs = [ qtscript qtwebkit ];
|
|
|
|
meta = with lib; {
|
|
description = "Play and download Youtube videos";
|
|
homepage = "http://smplayer.sourceforge.net/smtube.php";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ vbgl ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|