1 { lib, stdenv, fetchFromGitHub, autoreconfHook }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "0ajrkkg5awmi8m4b3mha7h07ylg18k252qprvk1sgq0qbyd66zy7";
14 nativeBuildInputs = [ autoreconfHook ];
16 # This problem is gone on libiscsi master.
18 lib.optional stdenv.hostPlatform.is32bit "-Wno-error=sign-compare";
21 description = "iscsi client library and utilities";
22 homepage = "https://github.com/sahlberg/libiscsi";
23 license = licenses.lgpl2;
24 platforms = platforms.unix;
25 maintainers = with maintainers; [ misuzu ];