mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
candle: init at 1.1
This commit is contained in:
parent
6ebd6ad7aa
commit
7b5318f065
32
pkgs/applications/misc/candle/default.nix
Normal file
32
pkgs/applications/misc/candle/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ stdenv, fetchFromGitHub, qtbase, qtserialport, qmake }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "candle-${version}";
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -1107,6 +1107,8 @@ in
|
||||
boost = pkgs.boost.override { python = python3; };
|
||||
};
|
||||
|
||||
candle = libsForQt5.callPackage ../applications/misc/candle { };
|
||||
|
||||
capstone = callPackage ../development/libraries/capstone { };
|
||||
unicorn-emu = callPackage ../development/libraries/unicorn-emu { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user