default.nix (567B)
1 { 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5 }: 6 7 buildGoModule rec { 8 pname = "gpxchart"; 9 version = "0.0.1"; 10 11 src = fetchFromGitHub { 12 owner = "tkrajina"; 13 repo = "gpxchart"; 14 rev = "v${version}"; 15 hash = "sha256-3HDj4k5mSUrJOxN2DrsHjMtX8PylxHExJeMc5CuaPP8="; 16 }; 17 18 vendorHash = null; 19 20 doCheck = false; 21 22 meta = { 23 description = "A command-line tool and library for elevation charts from GPX files"; 24 homepage = "https://github.com/tkrajina/gpxchart"; 25 license = lib.licenses.asl20; 26 maintainers = [ lib.maintainers.sikmir ]; 27 }; 28 }