Merge pull request #244342 from nova-r/valeronoi

valeronoi: init at 0.1.9
This commit is contained in:
Sandro 2023-07-24 00:19:00 +02:00 committed by GitHub
commit 8b04065e42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 64 additions and 0 deletions

View File

@ -10053,6 +10053,16 @@
githubId = 93990818;
name = "Madoura";
};
maeve = {
email = "mrey@mailbox.org";
matrix = "@maeve:catgirl.cloud";
github = "m-rey";
githubId = 42996147;
name = "Mæve";
keys = [{
fingerprint = "96C9 D086 CC9D 7BD7 EF24 80E2 9168 796A 1CC3 AEA2";
}];
};
mafo = {
email = "Marc.Fontaine@gmx.de";
github = "MarcFontaine";

View File

@ -0,0 +1,52 @@
{ lib
, stdenv
, fetchFromGitHub
, boost
, cgal
, cmake
, copyDesktopItems
, gpp
, mpfr
, qtbase
, qtimageformats
, qtsvg
, wrapQtAppsHook
}:
stdenv.mkDerivation rec {
pname = "valeronoi";
version = "0.1.9";
src = fetchFromGitHub {
owner = "ccoors";
repo = pname;
rev = "refs/tags/v${version}";
sha256 = "sha256-Xa70kOPQLavuJTF9PxCgpKYj15C2fna++cFlCId0a08=";
};
buildInputs = [
boost
cgal
gpp
mpfr
qtbase
qtimageformats
qtsvg
];
nativeBuildInputs = [
cmake
copyDesktopItems
wrapQtAppsHook
];
doCheck = true;
meta = with lib; {
homepage = "https://github.com/ccoors/Valeronoi/";
description = "A WiFi mapping companion app for Valetudo";
license = licenses.gpl3Only;
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ nova-madeline maeve ];
};
}

View File

@ -1912,6 +1912,8 @@ with pkgs;
unflac = callPackage ../tools/audio/unflac { };
valeronoi = qt6Packages.callPackage ../tools/misc/valeronoi { };
veikk-linux-driver-gui = libsForQt5.callPackage ../tools/misc/veikk-linux-driver-gui { };
ventoy = callPackage ../tools/cd-dvd/ventoy { };