mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
39 lines
733 B
Nix
39 lines
733 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, pdal
|
|
, curl
|
|
, openssl
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "entwine";
|
|
version = "unstable-2023-04-27";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "connormanning";
|
|
repo = "entwine";
|
|
rev = "8bd179c38e6da1688f42376b88ff30427672c4e3";
|
|
sha256 = "sha256-RlNxTtqxQoniI1Ugj5ot0weu7ji3WqDJZpMu2n8vBkw=";
|
|
};
|
|
|
|
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;
|
|
mainProgram = "entwine";
|
|
};
|
|
}
|