osmctools: Use a list for homepage instead of multi-line string

This commit is contained in:
Mario Rodas 2017-04-23 18:47:10 -05:00
parent 5ffed5898c
commit bebb14ebad

View file

@ -37,10 +37,10 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Command line tools for transforming Open Street Map files";
homepage = ''
http://wiki.openstreetmap.org/wiki/Osmconvert
homepage = [
https://wiki.openstreetmap.org/wiki/Osmconvert
https://wiki.openstreetmap.org/wiki/Osmfilter
'';
];
platforms = platforms.unix;
};
}