2022-09-02 15:15:24 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, pdal
|
|
|
|
, curl
|
|
|
|
, openssl
|
|
|
|
}:
|
|
|
|
|
2023-07-08 23:08:11 +00:00
|
|
|
stdenv.mkDerivation {
|
2022-09-02 15:15:24 +00:00
|
|
|
pname = "entwine";
|
2023-07-08 23:08:11 +00:00
|
|
|
version = "unstable-2023-04-27";
|
2022-09-02 15:15:24 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "connormanning";
|
|
|
|
repo = "entwine";
|
2023-07-08 23:08:11 +00:00
|
|
|
rev = "8bd179c38e6da1688f42376b88ff30427672c4e3";
|
|
|
|
sha256 = "sha256-RlNxTtqxQoniI1Ugj5ot0weu7ji3WqDJZpMu2n8vBkw=";
|
2022-09-02 15:15:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
openssl
|
|
|
|
pdal
|
|
|
|
curl
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Point cloud organization for massive datasets";
|
|
|
|
homepage = "https://entwine.io/";
|
|
|
|
license = licenses.lgpl2Only;
|
|
|
|
maintainers = with maintainers; [ matthewcroughan ];
|
|
|
|
platforms = platforms.linux;
|
2024-02-11 02:19:15 +00:00
|
|
|
mainProgram = "entwine";
|
2022-09-02 15:15:24 +00:00
|
|
|
};
|
|
|
|
}
|