about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/misc/curaengine/stable.nix
blob: 0de7e18f172d79a7ef47723bad003aec1d753c64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib, stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
  pname = "curaengine";
  version = "15.04.6";

  src = fetchFromGitHub {
    owner = "Ultimaker";
    repo = "CuraEngine";
    rev = version;
    sha256 = "sha256-8V21TRSqCN+hkTlz51d5A5oK5JOwEtx+ROt8cfJBL/0=";
  };

  postPatch = ''
    substituteInPlace Makefile --replace "--static" ""
  '';

  installPhase = ''
    mkdir -p $out/bin
    cp build/CuraEngine $out/bin/
  '';

  meta = with lib; {
    description = "Engine for processing 3D models into 3D printing instructions";
    mainProgram = "CuraEngine";
    homepage = "https://github.com/Ultimaker/CuraEngine";
    license = licenses.agpl3Plus;
    platforms = platforms.linux;
  };
}