python312Packages.powerfox: init at 1.1.0 (#371207)
[NixPkgs.git] / pkgs / applications / misc / curaengine / stable.nix
blob103f081fe1501468a6f39bbdade930d1c468ae10
2   lib,
3   stdenv,
4   fetchFromGitHub,
5 }:
7 stdenv.mkDerivation rec {
8   pname = "curaengine";
9   version = "15.04.6";
11   src = fetchFromGitHub {
12     owner = "Ultimaker";
13     repo = "CuraEngine";
14     rev = version;
15     sha256 = "sha256-8V21TRSqCN+hkTlz51d5A5oK5JOwEtx+ROt8cfJBL/0=";
16   };
18   postPatch = ''
19     substituteInPlace Makefile --replace "--static" ""
20   '';
22   installPhase = ''
23     mkdir -p $out/bin
24     cp build/CuraEngine $out/bin/
25   '';
27   meta = with lib; {
28     description = "Engine for processing 3D models into 3D printing instructions";
29     mainProgram = "CuraEngine";
30     homepage = "https://github.com/Ultimaker/CuraEngine";
31     license = licenses.agpl3Plus;
32     platforms = platforms.linux;
33   };