gpx: init at 2.5.2

This commit is contained in:
leo60228
2018-03-30 22:51:35 +02:00
committed by Robin Gloster
parent e2aa6728c9
commit 5de6ee22d1
3 changed files with 30 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
{ stdenv, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation rec {
name = "gpx-${version}";
version = "2.5.2";
nativeBuildInputs = [ autoreconfHook ];
src = fetchFromGitHub {
owner = "markwal";
repo = "GPX";
rev = version;
sha256 = "1yab269x8qyf7rd04vaxyqyjv4pzz9lp4sc4dwh927k23avr3rw5";
};
meta = {
description = "Gcode to x3g conversion postprocessor";
homepage = https://github.com/markwal/GPX/;
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.leo60228 ];
};
}