depot/third_party/nixpkgs/pkgs/applications/graphics/lightburn/default.nix

61 lines
1.2 KiB
Nix

{
lib,
stdenv,
fetchurl,
p7zip,
nss,
nspr,
libusb1,
qtbase,
qtmultimedia,
qtserialport,
cups,
autoPatchelfHook,
}:
stdenv.mkDerivation rec {
pname = "lightburn";
version = "1.6.04";
nativeBuildInputs = [
p7zip
autoPatchelfHook
];
src = fetchurl {
url = "https://github.com/LightBurnSoftware/deployment/releases/download/${version}/LightBurn-Linux64-v${version}.7z";
sha256 = "sha256-3dvLUfOczysRC8Ou6aQHzzmJs2rwtKAvfrwpQ4VMB/M=";
};
buildInputs = [
nss
nspr
libusb1
qtbase
qtmultimedia
qtserialport
cups
];
unpackPhase = ''
7z x $src
'';
installPhase = ''
mkdir -p $out/share $out/bin
cp -ar LightBurn $out/share/LightBurn
ln -s $out/share/LightBurn/AppRun $out/bin/LightBurn
'';
dontWrapQtApps = true;
meta = {
description = "Layout, editing, and control software for your laser cutter";
homepage = "https://lightburnsoftware.com/";
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
license = lib.licenses.unfree;
maintainers = with lib.maintainers; [ q3k ];
platforms = [ "x86_64-linux" ];
mainProgram = "LightBurn";
};
}