nixpkgs/pkgs/tools/misc/kisslicer/default.nix

57 lines
1.1 KiB
Nix
Raw Normal View History

2017-10-19 22:53:44 +00:00
{ fetchzip
, libX11
2019-11-10 16:44:34 +00:00
, libGLU, libGL
2017-10-19 22:53:44 +00:00
, makeWrapper
, lib, stdenv
2017-10-19 22:53:44 +00:00
}:
let
2021-01-15 09:19:50 +00:00
libPath = lib.makeLibraryPath [
2019-11-10 16:44:34 +00:00
libGLU libGL
2017-10-19 22:53:44 +00:00
stdenv.cc.cc
libX11
];
inidir = "\\\${XDG_CONFIG_HOME:-\\$HOME/.config}/kisslicer";
in
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
name = "kisslicer-1.6.3";
2017-10-19 22:53:44 +00:00
src = fetchzip {
url = "http://www.kisslicer.com/uploads/1/5/3/8/15381852/kisslicer_linux64_1.6.3_release.zip";
sha256 = "1xmywj5jrcsqv1d5x3mphhvafs4mfm9l12npkhk7l03qxbwg9j82";
2017-10-19 22:53:44 +00:00
stripRoot = false;
};
buildInputs = [
makeWrapper
2019-11-10 16:44:34 +00:00
libGLU libGL
2017-10-19 22:53:44 +00:00
libX11
];
installPhase = ''
mkdir -p $out/bin
cp -p * $out/bin
'';
fixupPhase = ''
chmod 755 $out/bin/KISSlicer
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
--set-rpath ${libPath} $out/bin/KISSlicer
wrapProgram $out/bin/KISSlicer \
--add-flags "-inidir ${inidir}" \
--run "mkdir -p ${inidir}"
'';
meta = with lib; {
2017-10-19 22:53:44 +00:00
description = "Convert STL files into Gcode";
homepage = "http://www.kisslicer.com";
2017-10-19 22:53:44 +00:00
license = licenses.unfree;
maintainers = [ maintainers.cransom ];
platforms = [ "x86_64-linux" ];
};
}