entwine: init at unstable-2022-08-03

This commit is contained in:
matthewcroughan 2022-09-02 16:15:24 +01:00
parent a7dc5df31a
commit dcd536f600
2 changed files with 40 additions and 0 deletions

View file

@ -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;
};
}

View file

@ -3744,6 +3744,8 @@ with pkgs;
ent = callPackage ../tools/misc/ent { };
entwine = callPackage ../applications/graphics/entwine { };
envconsul = callPackage ../tools/system/envconsul { };
envsubst = callPackage ../tools/misc/envsubst { };