mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
47 lines
1.1 KiB
Nix
47 lines
1.1 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";
|
|
};
|
|
}
|