1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-28 00:22:13 +00:00
nixpkgs/pkgs/applications/video/clipgrab/default.nix

51 lines
1.4 KiB
Nix
Raw Normal View History

2015-04-08 17:15:13 +01:00
{ stdenv, fetchurl, makeDesktopItem, qt4 }:
2015-05-11 14:06:31 +01:00
let version = "3.4.11"; in
stdenv.mkDerivation rec {
name = "clipgrab-${version}";
src = fetchurl {
2015-05-11 14:06:31 +01:00
sha256 = "10xxcnib7xkvrx7wma2vbya5fz5s5f6syc9dmr395c83lpcwpxs8";
# The "Download" button is a .tar.gz, but there's a .tar.bz2 further down:
url = "http://download.clipgrab.de/${name}.tar.bz2";
};
meta = with stdenv.lib; {
inherit version;
description = "Video downloader for YouTube and other sites";
longDescription = ''
ClipGrab is a free downloader and converter for YouTube, Vimeo, Metacafe,
Dailymotion and many other online video sites. It converts downloaded
videos to MPEG4, MP3 or other formats in just one easy step.
'';
homepage = http://clipgrab.org/;
license = licenses.gpl3Plus;
platforms = with platforms; linux;
maintainers = with maintainers; [ nckx ];
};
buildInputs = [ qt4 ];
configurePhase = ''
qmake clipgrab.pro
'';
enableParallelBuilding = true;
2015-04-08 17:15:13 +01:00
desktopItem = makeDesktopItem rec {
name = "clipgrab";
exec = name;
icon = name;
desktopName = "ClipGrab";
comment = "A friendly downloader for YouTube and other sites";
genericName = "Web video downloader";
categories = "Qt;AudioVideo;Audio;Video";
};
2015-04-08 17:15:13 +01:00
installPhase = ''
install -Dm755 clipgrab $out/bin/clipgrab
install -Dm644 icon.png $out/share/pixmaps/clipgrab.png
2015-04-08 17:15:13 +01:00
cp -r ${desktopItem}/share/applications $out/share
'';
}