forked from mirrors/nixpkgs
Merge pull request #244342 from nova-r/valeronoi
valeronoi: init at 0.1.9
This commit is contained in:
commit
8b04065e42
|
@ -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";
|
||||
|
|
52
pkgs/tools/misc/valeronoi/default.nix
Normal file
52
pkgs/tools/misc/valeronoi/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue