bolt-launcher: fix fhsenv version (#364686)

authored by Felix Bühler and committed by GitHub a4e1cfcc 4f60e7ed

+3 -3
+3 -3
pkgs/by-name/bo/bolt-launcher/package.nix
··· 162 }); 163 in 164 buildFHSEnv { 165 - inherit (bolt) name version; 166 167 targetPkgs = 168 pkgs: ··· 198 ln -s ${bolt}/share/icons/hicolor/256x256/apps/*.png $out/share/icons/hicolor/256x256/apps/ 199 ''; 200 201 - runScript = "${bolt.name}"; 202 203 meta = { 204 homepage = "https://github.com/Adamcake/Bolt"; ··· 209 license = lib.licenses.agpl3Plus; 210 maintainers = with lib.maintainers; [ nezia ]; 211 platforms = lib.platforms.linux; 212 - mainProgram = "${bolt.name}"; 213 }; 214 }
··· 162 }); 163 in 164 buildFHSEnv { 165 + inherit (bolt) pname version; 166 167 targetPkgs = 168 pkgs: ··· 198 ln -s ${bolt}/share/icons/hicolor/256x256/apps/*.png $out/share/icons/hicolor/256x256/apps/ 199 ''; 200 201 + runScript = "${bolt.pname}"; 202 203 meta = { 204 homepage = "https://github.com/Adamcake/Bolt"; ··· 209 license = lib.licenses.agpl3Plus; 210 maintainers = with lib.maintainers; [ nezia ]; 211 platforms = lib.platforms.linux; 212 + mainProgram = "${bolt.pname}"; 213 }; 214 }