valeronoi: migrate to by-name; refactor (#427499)

This commit is contained in:
guylamar2006
2025-07-23 10:42:57 +08:00
committed by GitHub
parent 16bf4a02fa
commit fd54edc4d3
2 changed files with 22 additions and 24 deletions
@@ -7,49 +7,49 @@
cmake,
gpp,
mpfr,
qtbase,
qtimageformats,
qtsvg,
wrapQtAppsHook,
qt6Packages,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "valeronoi";
version = "0.2.2";
src = fetchFromGitHub {
owner = "ccoors";
repo = pname;
tag = "v${version}";
sha256 = "sha256-5KXVSIqWDkXnpO+qgBzFtbJb444RW8dIVXp8Y/aAOrk=";
repo = "valeronoi";
tag = "v${finalAttrs.version}";
hash = "sha256-5KXVSIqWDkXnpO+qgBzFtbJb444RW8dIVXp8Y/aAOrk=";
};
buildInputs = [
boost
cgal
gpp
mpfr
qtbase
qtimageformats
qtsvg
];
buildInputs =
[
boost
cgal
gpp
mpfr
]
++ (with qt6Packages; [
qtbase
qtimageformats
qtsvg
]);
nativeBuildInputs = [
cmake
wrapQtAppsHook
qt6Packages.wrapQtAppsHook
];
doCheck = true;
meta = with lib; {
meta = {
homepage = "https://github.com/ccoors/Valeronoi/";
description = "WiFi mapping companion app for Valetudo";
license = licenses.gpl3Only;
license = lib.licenses.gpl3Only;
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [
maintainers = with lib.maintainers; [
nova-madeline
maeve
];
mainProgram = "valeronoi";
};
}
})
-2
View File
@@ -1154,8 +1154,6 @@ with pkgs;
ufolint = with python3Packages; toPythonApplication ufolint;
valeronoi = qt6Packages.callPackage ../tools/misc/valeronoi { };
veikk-linux-driver-gui = libsForQt5.callPackage ../tools/misc/veikk-linux-driver-gui { };
ventoy-full = ventoy.override {