Merge pull request #189479 from MatthewCroughan/mc/add-entwine
This commit is contained in:
commit
841c10f8ea
2 changed files with 40 additions and 0 deletions
38
pkgs/applications/graphics/entwine/default.nix
Normal file
38
pkgs/applications/graphics/entwine/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -3746,6 +3746,8 @@ with pkgs;
|
||||||
|
|
||||||
ent = callPackage ../tools/misc/ent { };
|
ent = callPackage ../tools/misc/ent { };
|
||||||
|
|
||||||
|
entwine = callPackage ../applications/graphics/entwine { };
|
||||||
|
|
||||||
envconsul = callPackage ../tools/system/envconsul { };
|
envconsul = callPackage ../tools/system/envconsul { };
|
||||||
|
|
||||||
envsubst = callPackage ../tools/misc/envsubst { };
|
envsubst = callPackage ../tools/misc/envsubst { };
|
||||||
|
|
Loading…
Reference in a new issue