summary refs log tree commit diff
path: root/pkgs/development/libraries/indilib/default.nix
blob: 5816f044f574ab7e7e566789f3cada7ccab68090 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchurl, cmake, cfitsio, libusb, zlib, boost, libnova
, curl, libjpeg, gsl }:

stdenv.mkDerivation {
  name = "indilib-1.1.0";

  src = fetchurl {
    url = mirror://sourceforge/indi/libindi_1.1.0.tar.gz;
    sha256 = "1bs6lkwqd4aashg93mqqkc7nrg7fbx9mdw85qs5263jqa6sr780w";
  };

  patches = [ ./udev-dir.patch ] ;

  buildInputs = [ curl cmake cfitsio libusb zlib boost
                            libnova libjpeg gsl ];

  meta = {
    homepage = https://www.indilib.org/;
    license = stdenv.lib.licenses.lgpl2Plus;
    description = "Implementaion of the INDI protocol for POSIX operating systems";
    platforms = stdenv.lib.platforms.unix;
  };
}