571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
54 lines
1.3 KiB
Nix
54 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.9";
|
|
|
|
src = fetchzip {
|
|
url = "https://github.com/winder/Universal-G-Code-Sender/releases/download/v${version}/UniversalGcodeSender.zip";
|
|
hash = "sha256-cZlBIafz+SZHP5xY6PupoCrbCng9lx9mbixBWiV6ufQ=";
|
|
};
|
|
|
|
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";
|
|
};
|
|
}
|