default.nix (691B)
1 { 2 lib, 3 rustPlatform, 4 fetchFromGitea, 5 }: 6 7 rustPlatform.buildRustPackage { 8 pname = "gprox"; 9 version = "0-unstable-2024-07-07"; 10 11 src = fetchFromGitea { 12 domain = "codeberg.org"; 13 owner = "reuse"; 14 repo = "gprox"; 15 rev = "eabed3e68850e61da8201c6b15f6a5454d0d8816"; 16 hash = "sha256-elSDOyTGOyLcMESCjKwabCCxE1PkpKxJzKnJyMUtwiA="; 17 }; 18 19 cargoPatches = [ ./cargo-lock.patch ]; 20 cargoHash = "sha256-PRpRZWxIMEikMDrS+jW/Uecha9Onuq6mn9CaK+i7GJs="; 21 22 meta = { 23 description = "Tool to process .gpx files"; 24 homepage = "https://codeberg.org/reuse/gprox"; 25 license = lib.licenses.gpl3; 26 maintainers = [ lib.maintainers.sikmir ]; 27 mainProgram = "gprox"; 28 }; 29 }