2021-01-15 06:42:41 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
|
2018-03-15 23:09:46 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "gpx";
|
2020-11-30 22:32:10 +01:00
|
|
|
version = "2.6.8";
|
2018-03-15 23:09:46 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "markwal";
|
|
|
|
repo = "GPX";
|
|
|
|
rev = version;
|
2020-11-30 22:32:10 +01:00
|
|
|
sha256 = "1izs8s5npkbfrsyk17429hyl1vyrbj9dp6vmdlbb2vh6mfgl54h8";
|
2018-03-15 23:09:46 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Gcode to x3g conversion postprocessor";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/markwal/GPX/";
|
2021-01-15 06:42:41 +01:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
platforms = lib.platforms.unix;
|
|
|
|
maintainers = [ lib.maintainers.leo60228 ];
|
2018-03-15 23:09:46 +01:00
|
|
|
};
|
|
|
|
}
|