libsurvive: init at 0.3
This commit is contained in:
parent
9dd4ddac2f
commit
b3d4984938
40
pkgs/development/libraries/libsurvive/default.nix
Normal file
40
pkgs/development/libraries/libsurvive/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -19051,6 +19051,8 @@ in
|
|||||||
|
|
||||||
libsmbios = callPackage ../os-specific/linux/libsmbios { };
|
libsmbios = callPackage ../os-specific/linux/libsmbios { };
|
||||||
|
|
||||||
|
libsurvive = callPackage ../development/libraries/libsurvive { };
|
||||||
|
|
||||||
lm_sensors = callPackage ../os-specific/linux/lm-sensors { };
|
lm_sensors = callPackage ../os-specific/linux/lm-sensors { };
|
||||||
|
|
||||||
lockdep = callPackage ../os-specific/linux/lockdep { };
|
lockdep = callPackage ../os-specific/linux/lockdep { };
|
||||||
|
Loading…
Reference in New Issue
Block a user