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