libsurvive: 0.4 -> 1.0

https://github.com/cntools/libsurvive/releases/tag/v1.0

With recent improvements to tracking and reliability it seemed time to commit to non beta status. This also means the "SimpleApi" portion of the library will be no longer be subject to breaking API changes.
This commit is contained in:
Luna Nova 2022-05-20 21:39:54 -07:00
parent bd2a32cb43
commit 0ef6ae6cd6
No known key found for this signature in database

View file

@ -7,17 +7,20 @@
, libusb1 , libusb1
, blas , blas
, zlib , zlib
, eigen
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "libsurvive"; pname = "libsurvive";
version = "0.4"; version = "1.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "cntools"; owner = "cntools";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-atX7QsCjKGa6OVSApnx3seBvZv/mlpV3jWRB9+v7Emc="; # Fixes 'Unknown CMake command "cnkalman_generate_code"'
fetchSubmodules = true;
sha256 = "sha256-I8Wx9avfMyDic+Bk/1IjzZiiHj+l3XqpRwxYbWlsG/Q=";
}; };
nativeBuildInputs = [ cmake pkg-config ]; nativeBuildInputs = [ cmake pkg-config ];
@ -28,6 +31,7 @@ stdenv.mkDerivation rec {
libusb1 libusb1
blas blas
zlib zlib
eigen
]; ];
meta = with lib; { meta = with lib; {