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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
707 B
Nix
Raw Normal View History

{ lib, mkDerivation, fetchurl, qmake, qtscript, qtwebkit }:
mkDerivation rec {
2022-01-02 15:40:22 +00:00
version = "21.10.0";
pname = "smtube";
2015-05-11 05:19:24 +00:00
src = fetchurl {
url = "mirror://sourceforge/smtube/SMTube/${version}/${pname}-${version}.tar.bz2";
2022-01-02 15:40:22 +00:00
sha256 = "sha256-ZQIUAi/YC+zsYHVhlprZ5K6NGvT6LojmdQ1Z+WCg1lU=";
};
2015-05-11 05:19:24 +00:00
makeFlags = [
"PREFIX=$(out)"
];
2016-04-28 21:38:16 +00:00
dontUseQmakeConfigure = true;
2017-06-02 15:40:19 +00:00
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;
};
}