Files
nixpkgs/pkgs/by-name/ug/ugs/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

58 lines
1.3 KiB
Nix

{
stdenv,
lib,
copyDesktopItems,
makeDesktopItem,
makeWrapper,
jre,
fetchzip,
}:
let
desktopItem = makeDesktopItem {
name = "ugs";
exec = "ugs";
comment = "A cross-platform G-Code sender for GRBL, Smoothieware, TinyG and G2core.";
desktopName = "Universal-G-Code-Sender";
categories = [ "Game" ];
};
in
stdenv.mkDerivation rec {
pname = "ugs";
version = "2.1.17";
src = fetchzip {
url = "https://github.com/winder/Universal-G-Code-Sender/releases/download/v${version}/UniversalGcodeSender.zip";
hash = "sha256-7Ed3oz6E/9pEX01Xk1UokRxo5vf80JrcdBaPoT7hgm4=";
};
dontUnpack = true;
nativeBuildInputs = [
copyDesktopItems
makeWrapper
];
installPhase = ''
runHook preInstall
makeWrapper ${jre}/bin/java $out/bin/ugs \
--prefix PATH : ${lib.makeBinPath [ jre ]} \
--add-flags "-jar ${src}/UniversalGcodeSender.jar"
runHook postInstall
'';
desktopItems = [ desktopItem ];
meta = with lib; {
description = "Cross-platform G-Code sender for GRBL, Smoothieware, TinyG and G2core";
homepage = "https://github.com/winder/Universal-G-Code-Sender";
maintainers = with maintainers; [ matthewcroughan ];
sourceProvenance = with sourceTypes; [ binaryBytecode ];
license = licenses.gpl3;
platforms = platforms.all;
mainProgram = "ugs";
};
}