mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
qsstv: init at 9.2.6
This commit is contained in:
parent
333a6646a8
commit
f09e3a385d
54
pkgs/applications/misc/qsstv/default.nix
Normal file
54
pkgs/applications/misc/qsstv/default.nix
Normal file
@ -0,0 +1,54 @@
|
||||
{ stdenv, fetchurl, qtbase, qmake, makeDesktopItem, openjpeg, pkgconfig, fftw,
|
||||
libpulseaudio, alsaLib, hamlib, libv4l, fftwFloat }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "9.2.6";
|
||||
name = "qsstv-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://users.telenet.be/on4qz/qsstv/downloads/qsstv_${version}.tar.gz";
|
||||
sha256 = "0sx70yk389fq5djvjwnam6ics5knmg9b5x608bk2sjbfxkila108";
|
||||
};
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
nativeBuildInputs = [
|
||||
qmake
|
||||
pkgconfig
|
||||
];
|
||||
|
||||
buildInputs = [ qtbase openjpeg fftw libpulseaudio alsaLib hamlib libv4l
|
||||
fftwFloat ];
|
||||
|
||||
desktopItem = makeDesktopItem {
|
||||
name = "QSSTV";
|
||||
exec = "qsstv";
|
||||
icon = "qsstv.png";
|
||||
comment = "Qt-based slow-scan TV and fax";
|
||||
desktopName = "QSSTV";
|
||||
genericName = "qsstv";
|
||||
categories = "Application;HamRadio;";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
# Install binary to the right location
|
||||
make install INSTALL_ROOT=$out
|
||||
mv $out/usr/bin $out/
|
||||
rm -r $out/usr
|
||||
|
||||
# Install desktop icon
|
||||
install -D qsstv/icons/qsstv.png $out/share/pixmaps/qsstv.png
|
||||
|
||||
# Install desktop item
|
||||
cp -rv ${desktopItem}/share $out
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Qt-based slow-scan TV and fax";
|
||||
homepage = http://users.telenet.be/on4qz/;
|
||||
platforms = platforms.linux;
|
||||
license = stdenv.lib.licenses.gpl3;
|
||||
maintainers = with stdenv.lib.maintainers; [ hax404 ];
|
||||
};
|
||||
}
|
||||
|
@ -17956,6 +17956,8 @@ with pkgs;
|
||||
qt = qt4;
|
||||
};
|
||||
|
||||
qsstv = qt5.callPackage ../applications/misc/qsstv { };
|
||||
|
||||
qsyncthingtray = libsForQt5.callPackage ../applications/misc/qsyncthingtray { };
|
||||
|
||||
qstopmotion = callPackage ../applications/video/qstopmotion { };
|
||||
|
Loading…
Reference in New Issue
Block a user