about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/video/w_scan/default.nix
blob: 7cbc2b0f81590ad5bade4c9edf04f0e4eb7d0700 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, stdenv, fetchurl }:

stdenv.mkDerivation rec {
  pname = "w_scan";
  version = "20170107";

  src = fetchurl {
    url = "http://wirbel.htpc-forum.de/w_scan/${pname}-${version}.tar.bz2";
    sha256 = "1zkgnj2sfvckix360wwk1v5s43g69snm45m0drnzyv7hgf5g7q1q";
  };

  meta = {
    description = "Small CLI utility to scan DVB and ATSC transmissions";
    homepage = "http://wirbel.htpc-forum.de/w_scan/index_en.html";
    platforms = lib.platforms.linux;
    maintainers = [ lib.maintainers.nico202 ] ;
    license = lib.licenses.gpl2;
  };
}