nixpkgs/pkgs/tools/misc/valeronoi/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
895 B
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, boost
, cgal
, cmake
, copyDesktopItems
, gpp
, mpfr
, qtbase
, qtimageformats
, qtsvg
, wrapQtAppsHook
}:
stdenv.mkDerivation rec {
pname = "valeronoi";
2023-10-10 09:14:01 +02:00
version = "0.2.0";
src = fetchFromGitHub {
owner = "ccoors";
repo = pname;
rev = "refs/tags/v${version}";
2023-10-10 09:14:01 +02:00
sha256 = "sha256-4BTBF6h/BEVr0E3E0EvvKOQGHZ4wCtdXgKBWLSfOcOI=";
};
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 ];
2023-11-27 02:17:53 +01:00
mainProgram = "valeronoi";
};
}