nixpkgs/pkgs/applications/misc/candle/default.nix

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

33 lines
775 B
Nix
Raw Normal View History

{ mkDerivation, lib, fetchFromGitHub, qtbase, qtserialport, qmake }:
2019-02-25 00:50:11 +01:00
2020-04-07 22:34:14 +02:00
mkDerivation rec {
pname = "candle";
2019-02-25 00:50:11 +01:00
version = "1.1";
src = fetchFromGitHub {
owner = "Denvi";
repo = "Candle";
rev = "v${version}";
sha256 = "1gpx08gdz8awbsj6lsczwgffp19z3q0r2fvm72a73qd9az29pmm0";
};
nativeBuildInputs = [ qmake ];
2021-01-01 14:46:40 +01:00
2019-02-25 00:50:11 +01:00
sourceRoot = "source/src";
installPhase = ''
runHook preInstall
install -Dm755 Candle $out/bin/candle
runHook postInstall
'';
buildInputs = [ qtbase qtserialport ];
meta = with lib; {
2019-02-25 00:50:11 +01:00
description = "GRBL controller application with G-Code visualizer written in Qt";
homepage = "https://github.com/Denvi/Candle";
2019-02-25 00:50:11 +01:00
license = licenses.gpl3;
maintainers = with maintainers; [ matti-kariluoma ];
};
}