summary refs log tree commit diff
path: root/pkgs/applications/misc/curaengine/default.nix
blob: 256d337f679e8337cb904123fb2eeefe692a8c57 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchgit }:
stdenv.mkDerivation {
    name = "curaengine";

    src = fetchgit {
        url = "https://github.com/Ultimaker/CuraEngine";
        rev = "62667ff2e7479b55d75e3d1dc9136242adf4a6a0";
        sha256 = "0c68xmnq4c49vzg2cyqb375kc72rcnghj21wp3919w8sfwil00vr";
    };

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

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