default.nix (692B)
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 21 cargoHash = "sha256-CjVymOCY1e3DTpAg0QgerNkzGplYHizmzwlYPbNNkbU="; 22 23 meta = { 24 description = "Tool to process .gpx files"; 25 homepage = "https://codeberg.org/reuse/gprox"; 26 license = lib.licenses.gpl3; 27 maintainers = [ lib.maintainers.sikmir ]; 28 mainProgram = "gprox"; 29 }; 30 }