From 28356e38016997d3e5a72bfc2193825b6920bc7f Mon Sep 17 00:00:00 2001 From: kilianar Date: Sun, 2 Oct 2022 12:02:27 +0200 Subject: [PATCH 1/2] indilib: 1.9.6 -> 1.9.8 - https://github.com/indilib/indi/releases/tag/v1.9.7 - https://github.com/indilib/indi/releases/tag/v1.9.8 --- .../libraries/science/astronomy/indilib/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/science/astronomy/indilib/default.nix b/pkgs/development/libraries/science/astronomy/indilib/default.nix index b519cf959695..194a9a0c15cf 100644 --- a/pkgs/development/libraries/science/astronomy/indilib/default.nix +++ b/pkgs/development/libraries/science/astronomy/indilib/default.nix @@ -6,6 +6,7 @@ , libusb1 , zlib , boost +, libev , libnova , curl , libjpeg @@ -15,13 +16,13 @@ stdenv.mkDerivation rec { pname = "indilib"; - version = "1.9.6"; + version = "1.9.8"; src = fetchFromGitHub { owner = "indilib"; repo = "indi"; rev = "v${version}"; - sha256 = "sha256-rElxc9q4i8FjjPmLXhu6GnHps6t3NWkfxtqAAeRq77M="; + sha256 = "sha256-+KFuZgM/Bl6Oezq3WXjWCHefc1wvR3wOKXejmT0pw1U="; }; nativeBuildInputs = [ @@ -31,6 +32,7 @@ stdenv.mkDerivation rec { buildInputs = [ curl cfitsio + libev libusb1 zlib boost From b1faf42f3c078eab125e8dc60909fd717a160047 Mon Sep 17 00:00:00 2001 From: kilianar Date: Sun, 2 Oct 2022 12:04:28 +0200 Subject: [PATCH 2/2] indi-3rdparty: 1.9.3 -> 1.9.8 - https://github.com/indilib/indi-3rdparty/releases/tag/v1.9.4 - https://github.com/indilib/indi-3rdparty/releases/tag/v1.9.5 - https://github.com/indilib/indi-3rdparty/releases/tag/v1.9.6 - https://github.com/indilib/indi-3rdparty/releases/tag/v1.9.7 - https://github.com/indilib/indi-3rdparty/releases/tag/v1.9.8 --- .../libraries/science/astronomy/indilib/indi-firmware.nix | 2 +- .../libraries/science/astronomy/indilib/indi-full.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/science/astronomy/indilib/indi-firmware.nix b/pkgs/development/libraries/science/astronomy/indilib/indi-firmware.nix index d23673ac37ae..660433c2dd59 100644 --- a/pkgs/development/libraries/science/astronomy/indilib/indi-firmware.nix +++ b/pkgs/development/libraries/science/astronomy/indilib/indi-firmware.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation rec { ]; postPatch = '' - for f in libfishcamp/CMakeLists.txt libsbig/CMakeLists.txt + for f in {libfishcamp,libsbig,libqhy}/CMakeLists.txt do substituteInPlace $f --replace "/lib/firmware" "lib/firmware" done diff --git a/pkgs/development/libraries/science/astronomy/indilib/indi-full.nix b/pkgs/development/libraries/science/astronomy/indilib/indi-full.nix index a20c92dfaeba..fae8b95cb28c 100644 --- a/pkgs/development/libraries/science/astronomy/indilib/indi-full.nix +++ b/pkgs/development/libraries/science/astronomy/indilib/indi-full.nix @@ -1,12 +1,12 @@ { stdenv, lib, callPackage, fetchFromGitHub, indilib }: let - indi-version = "1.9.3"; + indi-version = "1.9.8"; indi-3rdparty-src = fetchFromGitHub { owner = "indilib"; repo = "indi-3rdparty"; rev = "v${indi-version}"; - sha256 = "sha256-TBccdheBEO48uIXd6tya6dytkzxaHg2+YancBkcL3bw="; + sha256 = "sha256-ZFbMyjMvAWcdsl+1TyX5/v5nY1DqvhZ2ckFBDe8gdQg="; }; indi-firmware = callPackage ./indi-firmware.nix { version = indi-version;