1 { lib, stdenv, fetchFromGitHub, autoreconfHook
2 , pkg-config, cairo, glib, gdk-pixbuf, libjpeg
3 , libpng, libtiff, libxml2, openjpeg, sqlite, zlib
6 stdenv.mkDerivation rec {
10 src = fetchFromGitHub {
14 sha256 = "1g4hhjr4cbx754cwi9wl84k33bkg232w8ajic7aqhzm8x182hszp";
17 buildInputs = [ cairo glib gdk-pixbuf libjpeg libpng libtiff libxml2 openjpeg sqlite zlib ];
19 nativeBuildInputs = [ autoreconfHook pkg-config ];
22 homepage = "https://openslide.org";
23 description = "A C library that provides a simple interface to read whole-slide images.";
24 license = licenses.lgpl21;
25 platforms = platforms.unix;
26 maintainers = with maintainers; [ lromor ];