4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
37 lines
949 B
Nix
37 lines
949 B
Nix
{ mkDerivation, lib, 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 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 ];
|
|
};
|
|
}
|
|
|