mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
indilib: 1.1.0 -> 1.8.6
This commit is contained in:
parent
4365578bdf
commit
58f024530a
@ -3493,6 +3493,12 @@
|
|||||||
email = "t@larkery.com";
|
email = "t@larkery.com";
|
||||||
name = "Tom Hinton";
|
name = "Tom Hinton";
|
||||||
};
|
};
|
||||||
|
hjones2199 = {
|
||||||
|
email = "hjones2199@gmail.com";
|
||||||
|
github = "hjones2199";
|
||||||
|
githubId = 5525217;
|
||||||
|
name = "Hunter Jones";
|
||||||
|
};
|
||||||
hkjn = {
|
hkjn = {
|
||||||
email = "me@hkjn.me";
|
email = "me@hkjn.me";
|
||||||
name = "Henrik Jonsson";
|
name = "Henrik Jonsson";
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv
|
{ stdenv
|
||||||
, fetchurl
|
, fetchFromGitHub
|
||||||
, cmake
|
, cmake
|
||||||
, cfitsio
|
, cfitsio
|
||||||
, libusb1
|
, libusb1
|
||||||
@ -9,14 +9,18 @@
|
|||||||
, curl
|
, curl
|
||||||
, libjpeg
|
, libjpeg
|
||||||
, gsl
|
, gsl
|
||||||
|
, fftw
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
name = "indilib-1.1.0";
|
pname = "indilib";
|
||||||
|
version = "1.8.6";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "mirror://sourceforge/indi/libindi_1.1.0.tar.gz";
|
owner = "indilib";
|
||||||
sha256 = "1bs6lkwqd4aashg93mqqkc7nrg7fbx9mdw85qs5263jqa6sr780w";
|
repo = "indi";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1yzvcm7lwhwssnvv6gp8f7igmnvs35bpidmzz6z15awm5841yw30";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
@ -36,12 +40,14 @@ stdenv.mkDerivation {
|
|||||||
libnova
|
libnova
|
||||||
libjpeg
|
libjpeg
|
||||||
gsl
|
gsl
|
||||||
|
fftw
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = "https://www.indilib.org/";
|
homepage = "https://www.indilib.org/";
|
||||||
license = stdenv.lib.licenses.lgpl2Plus;
|
description = "Implementation of the INDI protocol for POSIX operating systems";
|
||||||
description = "Implementaion of the INDI protocol for POSIX operating systems";
|
license = licenses.lgpl2Plus;
|
||||||
platforms = stdenv.lib.platforms.unix;
|
maintainers = with maintainers; [ hjones2199 ];
|
||||||
|
platforms = [ "x86_64-linux" ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,11 @@
|
|||||||
diff -Naur libindi-1.0.0-upstream/CMakeLists.txt libindi-1.0.0/CMakeLists.txt
|
--- indi-1.8.6/CMakeLists.txt 2020-08-21 05:56:59.000000000 -0500
|
||||||
--- libindi-1.0.0-upstream/CMakeLists.txt 2015-03-28 21:06:49.576863460 -0430
|
+++ CMakeLists.txt 2020-11-01 12:50:57.621293870 -0600
|
||||||
+++ libindi-1.0.0/CMakeLists.txt 2015-03-28 21:07:48.420677548 -0430
|
@@ -77,7 +77,7 @@
|
||||||
@@ -28,7 +28,7 @@
|
## the following are directories where stuff will be installed to
|
||||||
## the following are directories where stuff will be installed to
|
set(INCLUDE_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/include/")
|
||||||
set(INCLUDE_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/include/")
|
set(PKGCONFIG_INSTALL_PREFIX "${CMAKE_INSTALL_LIBDIR}/pkgconfig/")
|
||||||
set(PKGCONFIG_INSTALL_PREFIX "${LIB_DESTINATION}/pkgconfig/")
|
-set(UDEVRULES_INSTALL_DIR "/lib/udev/rules.d" CACHE STRING "Base directory for udev rules")
|
||||||
-set(UDEVRULES_INSTALL_DIR "/lib/udev/rules.d" CACHE STRING "Base directory for udev rules")
|
+set(UDEVRULES_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/lib/udev/rules.d" CACHE STRING "Base directory for udev rules")
|
||||||
+set(UDEVRULES_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/lib/udev/rules.d" CACHE STRING "Base directory for udev rules")
|
|
||||||
|
set(PKG_CONFIG_LIBDIR ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR})
|
||||||
################## Includes ################################
|
|
||||||
Include (CheckCXXSourceCompiles)
|
|
||||||
|
Loading…
Reference in New Issue
Block a user