Merge pull request #108490 from prusnak/libsurvive

libsurvive: init at 0.3
This commit is contained in:
Sandro 2021-01-06 01:29:11 +01:00 committed by GitHub
commit 59c03dc616
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,40 @@
{ stdenv
, fetchFromGitHub
, cmake
, pkg-config
, freeglut
, liblapack
, libusb1
, openblas
, zlib
}:
stdenv.mkDerivation rec {
pname = "libsurvive";
version = "0.3";
src = fetchFromGitHub {
owner = "cntools";
repo = pname;
rev = "v${version}";
sha256 = "0m21fnq8pfw2pcvqfgjws531zmalda423q9i65v4qzm8sdb54hl4";
};
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [
freeglut
liblapack
libusb1
openblas
zlib
];
meta = with stdenv.lib; {
description = "Open Source Lighthouse Tracking System";
homepage = "https://github.com/cntools/libsurvive";
license = licenses.mit;
maintainers = with maintainers; [ prusnak ];
platforms = platforms.linux;
};
}

View File

@ -19056,6 +19056,8 @@ in
libsmbios = callPackage ../os-specific/linux/libsmbios { };
libsurvive = callPackage ../development/libraries/libsurvive { };
lm_sensors = callPackage ../os-specific/linux/lm-sensors { };
lockdep = callPackage ../os-specific/linux/lockdep { };