Merge pull request #274067 from philiptaron/batman-update

authored by Franz Pletz and committed by GitHub 42628ca6 c37e4687

+12 -5
+1 -1
pkgs/os-specific/linux/batman-adv/default.nix
··· 32 homepage = "https://www.open-mesh.org/projects/batman-adv/wiki/Wiki"; 33 description = "B.A.T.M.A.N. routing protocol in a linux kernel module for layer 2"; 34 license = lib.licenses.gpl2; 35 - maintainers = with lib.maintainers; [ fpletz hexa ]; 36 platforms = with lib.platforms; linux; 37 }; 38 }
··· 32 homepage = "https://www.open-mesh.org/projects/batman-adv/wiki/Wiki"; 33 description = "B.A.T.M.A.N. routing protocol in a linux kernel module for layer 2"; 34 license = lib.licenses.gpl2; 35 + maintainers = with lib.maintainers; [ fpletz hexa philiptaron ]; 36 platforms = with lib.platforms; linux; 37 }; 38 }
+11 -4
pkgs/os-specific/linux/batman-adv/version.nix
··· 1 { 2 - version = "2023.2"; 3 4 sha256 = { 5 - batman-adv = "sha256-OQfc1X4sW/2dQHE5YLlAK/HaT4DFm1/wN3ifu7vY+iU="; 6 - alfred = "sha256-qSBgKFZPieW/t3FK4piDoWEPYr4+YcCW4f6zYgBxjg4="; 7 - batctl = "sha256-cLX5MfpjYyVpe9829tE0oDxJBvTBfLdlCjxxSQFDbsg="; 8 }; 9 }
··· 1 { 2 + version = "2023.3"; 3 4 + # To get these, run: 5 + # 6 + # ``` 7 + # for tool in alfred batctl batman-adv; do 8 + # nix-prefetch-url https://downloads.open-mesh.org/batman/releases/batman-adv-2023.3/$tool-2023.3.tar.gz --type sha256 | xargs nix hash to-sri --type sha256 9 + # done 10 + # ``` 11 sha256 = { 12 + alfred = "sha256-rVrUFJ+uz351MCpXeqpnOxz8lAXSAksrSpFjuscMjk8="; 13 + batctl = "sha256-mswxFwkwwXl8OHY7h73/iAVMNNHwEvu4EAaCc/7zEhI="; 14 + batman-adv = "sha256-98bFPlk0PBYmQsubRPEBZ2XUv1E+A5ACvmEremweo2w="; 15 }; 16 }