lol

Merge pull request #257341 from wegank/wxformbuilder-refactor

wxformbuilder: refactor

authored by

Weijia Wang and committed by
GitHub
9207b884 cee746aa

+3 -2
+3 -2
pkgs/development/tools/wxformbuilder/default.nix
··· 10 10 }: 11 11 12 12 stdenv.mkDerivation (finalAttrs: { 13 - pname = "wxFormBuilder"; 13 + pname = "wxformbuilder"; 14 14 version = "unstable-2023-04-21"; 15 15 16 16 src = fetchFromGitHub { ··· 47 47 postInstall = lib.optionalString stdenv.isDarwin '' 48 48 mkdir -p $out/{Applications,bin} 49 49 mv $out/wxFormBuilder.app $out/Applications 50 - makeWrapper $out/{Applications/wxFormBuilder.app/Contents/MacOS,bin}/wxFormBuilder 50 + makeWrapper $out/Applications/wxFormBuilder.app/Contents/MacOS/wxFormBuilder $out/bin/wxformbuilder 51 51 ''; 52 52 53 53 meta = with lib; { 54 54 description = "RAD tool for wxWidgets GUI design"; 55 55 homepage = "https://github.com/wxFormBuilder/wxFormBuilder"; 56 56 license = licenses.gpl2Only; 57 + mainProgram = "wxformbuilder"; 57 58 maintainers = with maintainers; [ matthuszagh wegank ]; 58 59 platforms = platforms.unix; 59 60 };