nixpkgs/pkgs/applications/video/xawtv/default.nix
R. RyanTM b935479321 xawtv: 3.104 -> 3.105 (#42935)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/xawtv/versions.

These checks were done:

- built on NixOS
- /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/dump-mixers passed the binary check.
- /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/record passed the binary check.
- Warning: no invocation of /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/showriff had a zero exit code or showed the expected version
- Warning: no invocation of /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/showqt had a zero exit code or showed the expected version
- /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/streamer passed the binary check.
- Warning: no invocation of /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/webcam had a zero exit code or showed the expected version
- Warning: no invocation of /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/ttv had a zero exit code or showed the expected version
- /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/radio passed the binary check.
- Warning: no invocation of /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/fbtv had a zero exit code or showed the expected version
- Warning: no invocation of /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/v4l-info had a zero exit code or showed the expected version
- Warning: no invocation of /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/v4l-conf had a zero exit code or showed the expected version
- /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/ntsc-cc passed the binary check.
- Warning: no invocation of /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/v4lctl had a zero exit code or showed the expected version
- Warning: no invocation of /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/propwatch had a zero exit code or showed the expected version
- Warning: no invocation of /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/xawtv-remote had a zero exit code or showed the expected version
- /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/rootv passed the binary check.
- Warning: no invocation of /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/xawtv had a zero exit code or showed the expected version
- Warning: no invocation of /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/pia had a zero exit code or showed the expected version
- /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/subtitles passed the binary check.
- 7 of 19 passed binary check by having a zero exit code.
- 0 of 19 passed binary check by having the new version present in output.
- found 3.105 with grep in /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105
- directory tree listing: https://gist.github.com/7c238e8d1ae9a5f2d37671aec9de9e14
- du listing: https://gist.github.com/0f4cfe62d77dd008d93b8ceff46d9b36
2018-07-08 23:37:09 +02:00

32 lines
1.1 KiB
Nix

{stdenv, fetchurl, ncurses, libjpeg, libX11, libXt, alsaLib, aalib, libXft, xproto, libv4l
, libFS, fontsproto, libXaw, libXpm, libXext, libSM, libICE, perl, xextproto, linux}:
stdenv.mkDerivation rec {
name = "xawtv-3.105";
src = fetchurl {
url = "https://linuxtv.org/downloads/xawtv/${name}.tar.bz2";
sha256 = "03v4k0dychjz1kj890d9pc7v8jh084m01g71x1clmmvc6vc9kn1b";
};
preConfigure = ''
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${linux}/lib/modules/${linux.modDirVersion}/build"
'';
configureFlags="--prefix=";
NIX_LDFLAGS="-lgcc_s";
makeFlags = "SUID_ROOT= DESTDIR=\$(out) PREFIX=";
buildInputs = [ncurses libjpeg libX11 libXt libXft xproto libFS perl alsaLib aalib
fontsproto libXaw libXpm libXext libSM libICE xextproto libv4l];
meta = {
description = "TV application for Linux with apps and tools such as a teletext browser";
license = stdenv.lib.licenses.gpl2;
homepage = https://www.kraxel.org/blog/linux/xawtv/;
maintainers = with stdenv.lib.maintainers; [ domenkozar ];
platforms = stdenv.lib.platforms.linux;
};
}