mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
29 lines
705 B
Nix
29 lines
705 B
Nix
{ lib, mkDerivation, fetchurl, qmake, qtscript, qtwebkit }:
|
|
|
|
mkDerivation rec {
|
|
version = "19.6.0";
|
|
pname = "smtube";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/smtube/SMTube/${version}/${pname}-${version}.tar.bz2";
|
|
sha256 = "0d3hskd6ar51zq29xj899i8sii9g4cxq99gz2y1dhgsnqbn36hpm";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|