default.nix (632B)
1 { 2 lib, 3 stdenv, 4 fetchFromSourcehut, 5 }: 6 7 stdenv.mkDerivation { 8 pname = "geojson2dm"; 9 version = "0-unstable-2025-01-29"; 10 11 src = fetchFromSourcehut { 12 owner = "~sikmir"; 13 repo = "geojson2dm"; 14 rev = "5623cccb180399976df1c80776a9520873ed649e"; 15 hash = "sha256-ZWuAm99JveQ3kDOcScc4zuSSHxf66suIdI2RHAhuRRg="; 16 }; 17 18 installFlags = [ "PREFIX=$(out)" ]; 19 20 meta = { 21 description = "Convert GeoJSON to format suitable for input to datamaps"; 22 homepage = "https://git.sikmir.ru/geojson2dm"; 23 license = lib.licenses.isc; 24 maintainers = [ lib.maintainers.sikmir ]; 25 platforms = lib.platforms.unix; 26 }; 27 }