depot/third_party/nixpkgs/pkgs/development/libraries/libsurvive/default.nix
Default email 792b51d22f Project import generated by Copybara.
GitOrigin-RevId: d5f237872975e6fb6f76eef1368b5634ffcd266f
2022-02-20 05:27:41 +00:00

40 lines
726 B
Nix

{ lib, stdenv
, fetchFromGitHub
, cmake
, pkg-config
, freeglut
, lapack
, libusb1
, blas
, zlib
}:
stdenv.mkDerivation rec {
pname = "libsurvive";
version = "0.4";
src = fetchFromGitHub {
owner = "cntools";
repo = pname;
rev = "v${version}";
sha256 = "sha256-atX7QsCjKGa6OVSApnx3seBvZv/mlpV3jWRB9+v7Emc=";
};
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [
freeglut
lapack
libusb1
blas
zlib
];
meta = with lib; {
description = "Open Source Lighthouse Tracking System";
homepage = "https://github.com/cntools/libsurvive";
license = licenses.mit;
maintainers = with maintainers; [ expipiplus1 prusnak ];
platforms = platforms.linux;
};
}