libsurvive: init at 0.3

This commit is contained in:
Pavol Rusnak 2021-01-05 17:28:38 +01:00
parent 9dd4ddac2f
commit b3d4984938
No known key found for this signature in database
GPG key ID: 91F3B339B9A02A3D
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

@ -19051,6 +19051,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 { };