Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / LASzip / LASzip2.nix
blob4f63dfe8059c88869f873a216dabfdd208386625
1 { lib, stdenv, fetchFromGitHub, cmake }:
3 stdenv.mkDerivation rec {
4   version = "2.2.0";
5   pname = "LASzip";
7   src = fetchFromGitHub {
8     owner = "LASzip";
9     repo = "LASzip";
10     rev = "v${version}";
11     sha256 = "sha256-TXzse4oLjNX5R2xDR721iV+gW/rP5z3Zciv4OgxfeqA=";
12   };
14   nativeBuildInputs = [ cmake ];
16   meta = with lib; {
17     description = "Turn quickly bulky LAS files into compact LAZ files without information loss";
18     homepage = "https://laszip.org";
19     license = licenses.lgpl2;
20     maintainers = [ maintainers.michelk ];
21     platforms = platforms.unix;
22   };