nixpkgs/pkgs/applications/misc/gpx/default.nix

24 lines
564 B
Nix
Raw Normal View History

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