1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
8 url = "http://wirbel.htpc-forum.de/w_scan/${pname}-${version}.tar.bz2";
9 sha256 = "1zkgnj2sfvckix360wwk1v5s43g69snm45m0drnzyv7hgf5g7q1q";
12 # Workaround build failure on -fno-common toolchains:
13 # ld: char-coding.o:/build/w_scan-20170107/si_types.h:117: multiple definition of
14 # `service_t'; countries.o:/build/w_scan-20170107/si_types.h:117: first defined here
15 NIX_CFLAGS_COMPILE = "-fcommon";
18 description = "Small CLI utility to scan DVB and ATSC transmissions";
19 homepage = "http://wirbel.htpc-forum.de/w_scan/index_en.html";
20 platforms = lib.platforms.linux;
21 maintainers = [ lib.maintainers.nico202 ] ;
22 license = lib.licenses.gpl2;