summary refs log tree commit diff
path: root/pkgs/applications/misc/candle/default.nix
blob: 77cabc409c74486e3195faf350e4286b2f9baf5f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ stdenv, fetchFromGitHub, qtbase, qtserialport, qmake }:

stdenv.mkDerivation rec {
  pname = "candle";
  version = "1.1";

  src = fetchFromGitHub {
    owner  = "Denvi";
    repo   = "Candle";
    rev    = "v${version}";
    sha256 = "1gpx08gdz8awbsj6lsczwgffp19z3q0r2fvm72a73qd9az29pmm0";
  };

  nativeBuildInputs = [ qmake ];
  
  sourceRoot = "source/src";

  installPhase = ''
    runHook preInstall
    install -Dm755 Candle $out/bin/candle
    runHook postInstall
  '';

  buildInputs = [ qtbase qtserialport ];

  meta = with stdenv.lib; {
    description = "GRBL controller application with G-Code visualizer written in Qt";
    homepage = https://github.com/Denvi/Candle;
    license = licenses.gpl3;
    maintainers = with maintainers; [ matti-kariluoma ];
  };
}