summary refs log tree commit diff
path: root/pkgs/development/libraries/LASzip
diff options
context:
space:
mode:
authorNiklas Hambüchen <mail@nh2.me>2020-06-26 00:53:37 +0200
committerNiklas Hambüchen <mail@nh2.me>2020-06-26 15:06:50 +0200
commita9850760d211701b42bb7c7f5690c7e082cffbbb (patch)
tree311a1a5adcf43ab0086f94e8550e59cc09f9f455 /pkgs/development/libraries/LASzip
parent8f753cb7fb8a6b77df1d5702f06690036f080144 (diff)
LASzip2: Refactor: meta style
Co-authored-by: Jon <jonringer@users.noreply.github.com>
Diffstat (limited to 'pkgs/development/libraries/LASzip')
-rw-r--r--pkgs/development/libraries/LASzip/LASzip2.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/libraries/LASzip/LASzip2.nix b/pkgs/development/libraries/LASzip/LASzip2.nix
index e49909917c2ac..2eb3096312891 100644
--- a/pkgs/development/libraries/LASzip/LASzip2.nix
+++ b/pkgs/development/libraries/LASzip/LASzip2.nix
@@ -11,11 +11,11 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ cmake ];
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "Turn quickly bulky LAS files into compact LAZ files without information loss";
-    homepage = https://laszip.org;
-    license = stdenv.lib.licenses.lgpl2;
-    maintainers = [ stdenv.lib.maintainers.michelk ];
-    platforms = stdenv.lib.platforms.unix;
+    homepage = "https://laszip.org";
+    license = licenses.lgpl2;
+    maintainers = [ maintainers.michelk ];
+    platforms = platforms.unix;
   };
 }