blob: 0ab59737cd61c2d99f48ff854d6775f3997b255c (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
{ lib
, stdenv
, fetchFromGitHub
, gitUpdater
, cmake
, pdal
, curl
, openssl
}:
stdenv.mkDerivation rec {
pname = "entwine";
version = "3.1.1";
src = fetchFromGitHub {
owner = "connormanning";
repo = "entwine";
rev = version;
sha256 = "sha256-1dy5NafKX0E4MwFIggnr7bQIeB1KvqnNaQQUUAs6Bq8=";
};
buildInputs = [
openssl
pdal
curl
];
nativeBuildInputs = [
cmake
];
passthru.updateScript = gitUpdater {};
meta = with lib; {
description = "Point cloud organization for massive datasets";
homepage = "https://entwine.io/";
license = licenses.lgpl2Only;
maintainers = with maintainers; teams.geospatial.members ++ [ matthewcroughan ];
platforms = platforms.linux;
mainProgram = "entwine";
};
}
|