Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / LAStools / default.nix
blob2f2b3b23ae31366b5ac662d4dfd8c207ba066f1f
1 { lib, stdenv, fetchFromGitHub, cmake }:
3 stdenv.mkDerivation rec {
4   pname = "LAStools";
5   version = "2.0.2";
7   src = fetchFromGitHub {
8     owner = "LAStools";
9     repo = "LAStools";
10     rev = "v${version}";
11     sha256 = "sha256-HL64koe0GNzJzyA0QP4I0M1y2HSxigsZTqOw67RCwNc=";
12   };
14   patches = [
15     ./drop-64-suffix.patch # necessary to prevent '64' from being appended to the names of the executables
16   ];
18   hardeningDisable = [
19     "format"
20   ];
22   nativeBuildInputs = [
23     cmake
24   ];
26   meta = with lib; {
27     description = "Software for rapid LiDAR processing";
28     homepage = "http://lastools.org/";
29     license = licenses.unfree;
30     maintainers = with maintainers; [ stephenwithph ];
31     platforms = platforms.unix;
32   };