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

View File

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