nixpkgs/pkgs/tools/misc/marlin-calc/default.nix

32 lines
774 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub }:
2019-07-07 12:45:20 +00:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
2019-07-07 12:45:20 +00:00
pname = "marlin-calc";
2019-11-02 16:53:43 +00:00
version = "2019-10-17";
2019-07-07 12:45:20 +00:00
src = fetchFromGitHub {
owner = "eyal0";
repo = "Marlin";
2019-11-02 16:53:43 +00:00
rev = "3d5a5c86bea35a2a169eb56c70128bf2d070feef";
sha256 = "14sqajm361gnrcqv84g7kbmyqm8pppbhqsabszc4j2cn7vbwkdg5";
2019-07-07 12:45:20 +00:00
};
buildPhase = ''
cd Marlin/src
c++ module/planner.cpp module/calc.cpp feature/fwretract.cpp \
-O2 -Wall -std=gnu++11 -o marlin-calc
'';
installPhase = ''
install -Dm0755 {,$out/bin/}marlin-calc
'';
meta = with lib; {
2019-07-07 12:45:20 +00:00
homepage = "https://github.com/eyal0/Marlin";
description = "Marlin 3D printer timing simulator";
license = licenses.gpl3;
maintainers = with maintainers; [ gebner ];
platforms = platforms.unix;
};
}