lightburn: init at 0.9.15
This commit is contained in:
parent
a4d5f9ff5e
commit
dcbfb8177b
49
pkgs/applications/graphics/lightburn/default.nix
Normal file
49
pkgs/applications/graphics/lightburn/default.nix
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
{ stdenv, patchelf, fetchurl, p7zip
|
||||||
|
, nss, nspr, libusb1
|
||||||
|
, qtbase, qtmultimedia, qtserialport
|
||||||
|
, autoPatchelfHook, wrapQtAppsHook
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "lightburn";
|
||||||
|
version = "0.9.15";
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
p7zip
|
||||||
|
autoPatchelfHook
|
||||||
|
wrapQtAppsHook
|
||||||
|
];
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/LightBurnSoftware/deployment/releases/download/${version}/LightBurn-Linux64-v${version}.7z";
|
||||||
|
sha256 = "1dwmrili4jfw55gnlnda3imgli7f4jqz9smwlynf7k87lxrhppmh";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
nss nspr libusb1
|
||||||
|
qtbase qtmultimedia qtserialport
|
||||||
|
];
|
||||||
|
|
||||||
|
# We nuke the vendored Qt5 libraries that LightBurn ships and instead use our
|
||||||
|
# own.
|
||||||
|
unpackPhase = ''
|
||||||
|
7z x $src
|
||||||
|
rm -rf LightBurn/lib LightBurn/plugins
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/share $out/bin
|
||||||
|
cp -ar LightBurn $out/share/LightBurn
|
||||||
|
ln -s $out/share/LightBurn/LightBurn $out/bin
|
||||||
|
|
||||||
|
wrapQtApp $out/bin/LightBurn
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "LightBurn is layout, editing, and control software for your laser cutter.";
|
||||||
|
homepage = "https://lightburnsoftware.com/";
|
||||||
|
license = stdenv.lib.licenses.unfree;
|
||||||
|
maintainers = with stdenv.lib.maintainers; [ q3k ];
|
||||||
|
platforms = [ "x86_64-linux" ];
|
||||||
|
};
|
||||||
|
}
|
@ -21057,6 +21057,8 @@ in
|
|||||||
|
|
||||||
ledger-web = callPackage ../applications/office/ledger-web { };
|
ledger-web = callPackage ../applications/office/ledger-web { };
|
||||||
|
|
||||||
|
lightburn = libsForQt5.callPackage ../applications/graphics/lightburn { };
|
||||||
|
|
||||||
lighthouse = callPackage ../applications/misc/lighthouse { };
|
lighthouse = callPackage ../applications/misc/lighthouse { };
|
||||||
|
|
||||||
lighttable = callPackage ../applications/editors/lighttable {};
|
lighttable = callPackage ../applications/editors/lighttable {};
|
||||||
|
Loading…
Reference in New Issue
Block a user