about summary refs log tree commit diff
path: root/pkgs/applications/graphics/entwine
diff options
context:
space:
mode:
authormatthewcroughan <matt@croughan.sh>2022-09-02 16:15:24 +0100
committermatthewcroughan <matt@croughan.sh>2022-09-02 20:30:22 +0100
commitdcd536f6005b72ccb7a1f2879384380e036d50e8 (patch)
tree0848ede58a5fdd1afa0a0f9fa8826a02aef4da03 /pkgs/applications/graphics/entwine
parenta7dc5df31aacf2a025a83a9430272b8c796d0e2c (diff)
entwine: init at unstable-2022-08-03
Diffstat (limited to 'pkgs/applications/graphics/entwine')
-rw-r--r--pkgs/applications/graphics/entwine/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/entwine/default.nix b/pkgs/applications/graphics/entwine/default.nix
new file mode 100644
index 0000000000000..f9378c06ea4c9
--- /dev/null
+++ b/pkgs/applications/graphics/entwine/default.nix
@@ -0,0 +1,38 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, cmake
+, pdal
+, curl
+, openssl
+}:
+
+stdenv.mkDerivation rec {
+  pname = "entwine";
+  version = "unstable-2022-08-03";
+
+  src = fetchFromGitHub {
+    owner = "connormanning";
+    repo = "entwine";
+    rev = "c776d51fd6ab94705b74f78b26de7f853e6ceeae";
+    sha256 = "sha256-dhYJhXtfMmqQLWuV3Dux/sGTsVxCI7RXR2sPlwIry0g=";
+  };
+
+  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;
+  };
+}