tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
laszip_2: remove with lib;
qbisi
4 months ago
9cf0dfd9
6dad8b68
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
la
laszip_2
package.nix
+4
-4
pkgs/by-name/la/laszip_2/package.nix
···
18
19
nativeBuildInputs = [ cmake ];
20
21
-
meta = with lib; {
22
description = "Turn quickly bulky LAS files into compact LAZ files without information loss";
23
homepage = "https://laszip.org";
24
-
license = licenses.lgpl2;
25
-
maintainers = [ maintainers.michelk ];
26
-
platforms = platforms.unix;
27
};
28
})
···
18
19
nativeBuildInputs = [ cmake ];
20
21
+
meta = {
22
description = "Turn quickly bulky LAS files into compact LAZ files without information loss";
23
homepage = "https://laszip.org";
24
+
license = lib.licenses.lgpl2;
25
+
maintainers = with lib.maintainers; [ michelk ];
26
+
platforms = lib.platforms.unix;
27
};
28
})