about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/LASzip/default.nix
blob: f170ea44c0eeadd801152d40becbd2af7709dc32 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, stdenv, fetchFromGitHub, cmake }:

stdenv.mkDerivation rec {
  version = "3.4.3";
  pname = "LASzip";

  src = fetchFromGitHub {
    owner = "LASzip";
    repo = "LASzip";
    rev = version;
    sha256 = "09lcsgxwv0jq50fhsgfhx0npbf1zcwn3hbnq6q78fshqksbxmz7m";
  };

  nativeBuildInputs = [
    cmake
  ];

  meta = {
    description = "Turn quickly bulky LAS files into compact LAZ files without information loss";
    homepage = "https://laszip.org";
    license = lib.licenses.lgpl2;
    maintainers = [ lib.maintainers.michelk ];
    platforms = lib.platforms.unix;
  };
}