nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at netboot-syslinux-multiplatform 23 lines 564 B view raw
1{ lib, stdenv, fetchFromGitHub, autoreconfHook }: 2 3stdenv.mkDerivation rec { 4 pname = "gpx"; 5 version = "2.6.8"; 6 7 nativeBuildInputs = [ autoreconfHook ]; 8 9 src = fetchFromGitHub { 10 owner = "markwal"; 11 repo = "GPX"; 12 rev = version; 13 sha256 = "1izs8s5npkbfrsyk17429hyl1vyrbj9dp6vmdlbb2vh6mfgl54h8"; 14 }; 15 16 meta = { 17 description = "Gcode to x3g conversion postprocessor"; 18 homepage = "https://github.com/markwal/GPX/"; 19 license = lib.licenses.gpl2; 20 platforms = lib.platforms.unix; 21 maintainers = [ lib.maintainers.leo60228 ]; 22 }; 23}