depot/third_party/nixpkgs/pkgs/applications/graphics/entwine/default.nix
Default email 472aeafc57 Project import generated by Copybara.
GitOrigin-RevId: c31898adf5a8ed202ce5bea9f347b1c6871f32d1
2024-10-04 18:56:33 +02:00

42 lines
771 B
Nix

{ 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";
};
}