antimony: move to by-name

This commit is contained in:
awwpotato 2025-06-26 18:33:34 -07:00
parent 24d9d8b1fc
commit 7f44f8f1c5
No known key found for this signature in database
4 changed files with 7 additions and 10 deletions

View File

@ -6,8 +6,7 @@
python3, python3,
libGLU, libGLU,
libGL, libGL,
qtbase, libsForQt5,
wrapQtAppsHook,
ncurses, ncurses,
cmake, cmake,
flex, flex,
@ -51,7 +50,7 @@ stdenv.mkDerivation {
python3.pkgs.boost python3.pkgs.boost
libGLU libGLU
libGL libGL
qtbase libsForQt5.qtbase
ncurses ncurses
]; ];
@ -59,7 +58,7 @@ stdenv.mkDerivation {
cmake cmake
flex flex
lemon lemon
wrapQtAppsHook libsForQt5.wrapQtAppsHook
copyDesktopItems copyDesktopItems
]; ];
@ -90,12 +89,12 @@ stdenv.mkDerivation {
"-DGITBRANCH=${gitBranch}" "-DGITBRANCH=${gitBranch}"
]; ];
meta = with lib; { meta = {
description = "Computer-aided design (CAD) tool from a parallel universe"; description = "Computer-aided design (CAD) tool from a parallel universe";
mainProgram = "antimony"; mainProgram = "antimony";
homepage = "https://github.com/mkeeter/antimony"; homepage = "https://github.com/mkeeter/antimony";
license = licenses.mit; license = lib.licenses.mit;
maintainers = with maintainers; [ rnhmjoj ]; maintainers = with lib.maintainers; [ rnhmjoj ];
platforms = platforms.linux; platforms = lib.platforms.linux;
}; };
} }

View File

@ -11830,8 +11830,6 @@ with pkgs;
); );
android-studio-for-platform = androidStudioForPlatformPackages.stable; android-studio-for-platform = androidStudioForPlatformPackages.stable;
antimony = libsForQt5.callPackage ../applications/graphics/antimony { };
apngasm = callPackage ../applications/graphics/apngasm { }; apngasm = callPackage ../applications/graphics/apngasm { };
apngasm_2 = callPackage ../applications/graphics/apngasm/2.nix { }; apngasm_2 = callPackage ../applications/graphics/apngasm/2.nix { };