summary refs log tree commit diff
path: root/pkgs/applications/video
diff options
context:
space:
mode:
author= <anothersms@gmail.com>2016-11-14 17:15:14 +0100
committer= <anothersms@gmail.com>2016-11-14 17:20:23 +0100
commit56fdd19bc835fc5b30892ed6e8123f731905fc7b (patch)
tree64867f277e1a72c0bc4814bb5c549742296eb52e /pkgs/applications/video
parent7981d3437de6a3fecd36f722bc882ceb2cf0eb64 (diff)
downloadnixlib-56fdd19bc835fc5b30892ed6e8123f731905fc7b.tar
nixlib-56fdd19bc835fc5b30892ed6e8123f731905fc7b.tar.gz
nixlib-56fdd19bc835fc5b30892ed6e8123f731905fc7b.tar.bz2
nixlib-56fdd19bc835fc5b30892ed6e8123f731905fc7b.tar.lz
nixlib-56fdd19bc835fc5b30892ed6e8123f731905fc7b.tar.xz
nixlib-56fdd19bc835fc5b30892ed6e8123f731905fc7b.tar.zst
nixlib-56fdd19bc835fc5b30892ed6e8123f731905fc7b.zip
w_scan: init at 20161022
Diffstat (limited to 'pkgs/applications/video')
-rw-r--r--pkgs/applications/video/w_scan/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/applications/video/w_scan/default.nix b/pkgs/applications/video/w_scan/default.nix
new file mode 100644
index 000000000000..59ba63b32eeb
--- /dev/null
+++ b/pkgs/applications/video/w_scan/default.nix
@@ -0,0 +1,19 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  name = "w_scan-${version}";
+  version = "20161022";
+
+  src = fetchurl {
+    url = "http://wirbel.htpc-forum.de/w_scan/${name}.tar.bz2";
+    sha256 = "0y8dq2sm13xn2r2lrqf5pdhr9xcnbxbg1aw3iq1szds2idzsyxr0";
+  };
+
+  meta = {
+    description = "Small CLI utility to scan DVB and ATSC transmissions";
+    homepage = http://wirbel.htpc-forum.de/w_scan/index_en.html;
+    platforms = stdenv.lib.platforms.linux;
+    maintainers = [ stdenv.lib.maintainers.nico202 ] ;
+    license = stdenv.lib.licenses.gpl2;
+  };
+}