valeronoi: init at 0.1.9
Co-authored-by: Mæve Rey <42996147+m-rey@users.noreply.github.com>
This commit is contained in:
parent
1809c2db84
commit
ee0f7c7ce6
2 changed files with 54 additions and 0 deletions
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 ];
|
||||
};
|
||||
}
|
|
@ -1861,6 +1861,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