summary refs log tree commit diff
path: root/pkgs/applications/video/w_scan2
diff options
context:
space:
mode:
author0x4A6F <0x4A6F@users.noreply.github.com>2023-01-30 19:31:58 +0100
committer0x4A6F <0x4A6F@users.noreply.github.com>2023-01-31 05:12:01 +0100
commit2843cd434ead9020f0b400397cb2659fca53be9d (patch)
treecbbb644e310d22f29c4250d2322cd77da5c59834 /pkgs/applications/video/w_scan2
parent37b97ae3dd714de9a17923d004a2c5b5543dfa6d (diff)
w_scan2: init at 1.0.14
Diffstat (limited to 'pkgs/applications/video/w_scan2')
-rw-r--r--pkgs/applications/video/w_scan2/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/applications/video/w_scan2/default.nix b/pkgs/applications/video/w_scan2/default.nix
new file mode 100644
index 0000000000000..56000407fce63
--- /dev/null
+++ b/pkgs/applications/video/w_scan2/default.nix
@@ -0,0 +1,25 @@
+{
+  lib,
+  stdenv,
+  fetchFromGitHub,
+}:
+
+stdenv.mkDerivation rec {
+  pname = "w_scan2";
+  version = "1.0.14";
+
+  src = fetchFromGitHub {
+    owner = "stefantalpalaru";
+    repo = "w_scan2";
+    rev = version;
+    sha256 = "sha256-fDFAJ4EMwu4X1Go3jkRjwA66xDY4tJ5wCKlEdZUT4qQ=";
+  };
+
+  meta = {
+    description = "A small channel scan tool which generates ATSC, DVB-C, DVB-S/S2 and DVB-T/T2 channels.conf files";
+    homepage = "https://github.com/stefantalpalaru/w_scan2";
+    platforms = lib.platforms.linux;
+    maintainers = with lib.maintainers; [ _0x4A6F ] ;
+    license = lib.licenses.gpl2Only;
+  };
+}