package.nix (620B)
1 { 2 lib, 3 stdenv, 4 fetchFromSourcehut, 5 }: 6 7 stdenv.mkDerivation { 8 pname = "gpx2yaml"; 9 version = "0-unstable-2025-01-29"; 10 11 __structuredAttrs = true; 12 13 src = fetchFromSourcehut { 14 owner = "~sikmir"; 15 repo = "gpx2yaml"; 16 rev = "c0a28a96635706d8e052fe819c88e265577201b9"; 17 hash = "sha256-59UVcQh+TsqP/Z55wmtfH002FhScqaflrC5Kyid67tg="; 18 }; 19 20 installFlags = [ "PREFIX=$(out)" ]; 21 22 meta = { 23 description = "GPX to YAML converter"; 24 homepage = "https://git.sikmir.ru/gpx2yaml"; 25 license = lib.licenses.isc; 26 maintainers = [ lib.maintainers.sikmir ]; 27 platforms = lib.platforms.unix; 28 }; 29 }
