push sheeet
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s

This commit is contained in:
Dark Steveneq
2025-10-09 14:15:47 +02:00
commit 646b892680
49168 changed files with 5897842 additions and 0 deletions

View File

@@ -0,0 +1,95 @@
{
stdenv,
lib,
fetchFromGitHub,
bash,
cmake,
cfitsio,
libusb1,
kmod,
zlib,
boost,
libev,
libnova,
curl,
libjpeg,
gsl,
fftw,
gtest,
udevCheckHook,
indi-full,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "indilib";
version = "2.1.5.1";
src = fetchFromGitHub {
owner = "indilib";
repo = "indi";
rev = "v${finalAttrs.version}";
hash = "sha256-mbY3iDLRcQ+pis26u6pHzB43ureaKH7KYPkV0CwHU/E=";
};
nativeBuildInputs = [
cmake
udevCheckHook
];
buildInputs = [
curl
cfitsio
libev
libusb1
zlib
boost
libnova
libjpeg
gsl
fftw
];
cmakeFlags = [
"-DCMAKE_INSTALL_LIBDIR=lib"
"-DUDEVRULES_INSTALL_DIR=lib/udev/rules.d"
]
++ lib.optional finalAttrs.finalPackage.doCheck [
"-DINDI_BUILD_UNITTESTS=ON"
"-DINDI_BUILD_INTEGTESTS=ON"
];
checkInputs = [ gtest ];
doCheck = true;
doInstallCheck = true;
# Socket address collisions between tests
enableParallelChecking = false;
postFixup = lib.optionalString stdenv.hostPlatform.isLinux ''
for f in $out/lib/udev/rules.d/*.rules
do
substituteInPlace $f --replace-quiet "/bin/sh" "${bash}/bin/sh" \
--replace-quiet "/sbin/modprobe" "${kmod}/sbin/modprobe"
done
'';
passthru.tests = {
# make sure 3rd party drivers compile with this indilib
indi-full = indi-full.override {
indilib = finalAttrs.finalPackage;
};
};
meta = with lib; {
homepage = "https://www.indilib.org/";
description = "Implementation of the INDI protocol for POSIX operating systems";
changelog = "https://github.com/indilib/indi/releases/tag/v${finalAttrs.version}";
license = licenses.lgpl2Plus;
maintainers = with maintainers; [
sheepforce
returntoreality
];
platforms = platforms.unix;
};
})