calcmysky: move to by-name

This commit is contained in:
Aliaksandr
2026-01-31 19:58:34 +02:00
parent c893ad8b09
commit 1778c8ed15
2 changed files with 6 additions and 9 deletions
@@ -3,32 +3,31 @@
stdenv,
fetchFromGitHub,
cmake,
wrapQtAppsHook,
qt6,
glm,
eigen,
qtbase,
stellarium,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "calcmysky";
version = "0.4.0";
src = fetchFromGitHub {
owner = "10110111";
repo = "CalcMySky";
tag = "v${version}";
tag = "v${finalAttrs.version}";
hash = "sha256-AuDHLgOS+Cu2xSJQVi8XfrINoh18STP1ox7JElafW3k=";
};
nativeBuildInputs = [
cmake
wrapQtAppsHook
qt6.wrapQtAppsHook
];
buildInputs = [
glm
eigen
qtbase
qt6.qtbase
];
cmakeFlags = [ "-DQT_VERSION=6" ];
@@ -45,4 +44,4 @@ stdenv.mkDerivation rec {
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ nickcao ];
};
}
})
-2
View File
@@ -9915,8 +9915,6 @@ with pkgs;
breezy = with python3Packages; toPythonApplication breezy;
calcmysky = qt6Packages.callPackage ../applications/science/astronomy/calcmysky { };
# calico-felix and calico-node have not been packaged due to libbpf, linking issues
inherit (callPackage ../applications/networking/cluster/calico { })
calico-apiserver