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