mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
20 lines
546 B
Nix
20 lines
546 B
Nix
{ 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;
|
|
};
|
|
}
|