summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/video
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2023-01-31 13:04:39 +0800
committerGitHub <noreply@github.com>2023-01-31 13:04:39 +0800
commit72e21307004ea9a6d027f191555f55e1a76ab893 (patch)
tree60e09bb95f356cc7a46796cf97f86db014e25f19 /pkgs/applications/video
parentce476a4c23d5633310f2b7ae3b18f97fce343e48 (diff)
parent2843cd434ead9020f0b400397cb2659fca53be9d (diff)
Merge pull request #213667 from 0x4A6F/master-w_scan2
w_scan2: init at 1.0.14
Diffstat (limited to 'pkgs/applications/video')
-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 000000000000..56000407fce6
--- /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;
+ };
+}