From 680f67829f7acee4fca6156bea39cd5b5f6c6b7d Mon Sep 17 00:00:00 2001 From: Orivej Desh Date: Thu, 6 Jun 2019 14:45:09 +0000 Subject: [PATCH] geos: fix license --- pkgs/development/libraries/geos/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/geos/default.nix b/pkgs/development/libraries/geos/default.nix index ae8d88d12d9..3bed670cc30 100644 --- a/pkgs/development/libraries/geos/default.nix +++ b/pkgs/development/libraries/geos/default.nix @@ -12,9 +12,9 @@ stdenv.mkDerivation rec { buildInputs = [ python ]; - meta = { + meta = with stdenv.lib; { description = "C++ port of the Java Topology Suite (JTS)"; homepage = http://geos.refractions.net/; - license = "GPL"; + license = licenses.lgpl21; }; }