mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
37 lines
951 B
Nix
37 lines
951 B
Nix
{ mkDerivation, stdenv, fetchurl, qtbase, qmake, openjpeg, pkgconfig, fftw,
|
|
libpulseaudio, alsaLib, hamlib, libv4l, fftwFloat }:
|
|
|
|
mkDerivation rec {
|
|
version = "9.4.4";
|
|
pname = "qsstv";
|
|
|
|
src = fetchurl {
|
|
url = "http://users.telenet.be/on4qz/qsstv/downloads/qsstv_${version}.tar.gz";
|
|
sha256 = "0f9hx6sy418cb23fadll298pqbc5l2lxsdivi4vgqbkvx7sw58zi";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
nativeBuildInputs = [
|
|
qmake
|
|
pkgconfig
|
|
];
|
|
|
|
buildInputs = [ qtbase openjpeg fftw libpulseaudio alsaLib hamlib libv4l
|
|
fftwFloat ];
|
|
|
|
postInstall = ''
|
|
# Install desktop icon
|
|
install -D qsstv/icons/qsstv.png $out/share/pixmaps/qsstv.png
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|
|
|