2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, automake, autoconf, libtool, gettext
|
2021-01-28 11:53:10 +00:00
|
|
|
, util-linux, open-isns, openssl, kmod, perl, systemd, pkgconf
|
2018-11-19 12:34:30 +00:00
|
|
|
}:
|
|
|
|
|
2016-04-24 13:37:38 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "open-iscsi";
|
2021-03-14 15:09:13 +00:00
|
|
|
version = "2.1.4";
|
2018-11-19 12:34:30 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ autoconf automake gettext libtool perl pkgconf ];
|
2021-01-28 11:53:10 +00:00
|
|
|
buildInputs = [ kmod open-isns.lib openssl systemd util-linux ];
|
2015-10-21 04:58:33 +01:00
|
|
|
|
2016-04-24 13:37:38 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "open-iscsi";
|
|
|
|
repo = "open-iscsi";
|
2018-11-19 12:34:30 +00:00
|
|
|
rev = version;
|
2021-03-14 15:09:13 +00:00
|
|
|
sha256 = "sha256-HnvLLwxOnu7Oiige6A6zk9NmAI2ImcILp9eCfbdGiyI=";
|
2010-08-30 10:40:44 +01:00
|
|
|
};
|
2018-11-19 12:34:30 +00:00
|
|
|
|
2012-02-17 14:32:28 +00:00
|
|
|
DESTDIR = "$(out)";
|
2018-11-19 12:34:30 +00:00
|
|
|
|
|
|
|
NIX_LDFLAGS = "-lkmod -lsystemd";
|
2016-04-24 13:52:13 +01:00
|
|
|
NIX_CFLAGS_COMPILE = "-DUSE_KMOD";
|
|
|
|
|
2010-08-30 10:40:44 +01:00
|
|
|
preConfigure = ''
|
2016-04-30 19:28:11 +01:00
|
|
|
sed -i 's|/usr|/|' Makefile
|
2010-08-30 10:40:44 +01:00
|
|
|
'';
|
2018-11-19 12:34:30 +00:00
|
|
|
|
2020-11-04 08:30:03 +00:00
|
|
|
installFlags = [
|
|
|
|
"install"
|
|
|
|
"install_systemd"
|
|
|
|
];
|
|
|
|
|
2015-10-21 04:58:33 +01:00
|
|
|
postInstall = ''
|
2016-04-30 19:28:11 +01:00
|
|
|
cp usr/iscsistart $out/sbin/
|
2020-11-04 08:30:03 +00:00
|
|
|
for f in $out/lib/systemd/system/*; do
|
|
|
|
substituteInPlace $f --replace /sbin $out/bin
|
|
|
|
done
|
2016-04-30 19:28:11 +01:00
|
|
|
$out/sbin/iscsistart -v
|
2015-10-21 04:58:33 +01:00
|
|
|
'';
|
|
|
|
|
2019-11-29 00:26:52 +00:00
|
|
|
postFixup = ''
|
|
|
|
sed -i "s|/sbin/iscsiadm|$out/bin/iscsiadm|" $out/bin/iscsi_fw_login
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2012-02-17 14:32:28 +00:00
|
|
|
description = "A high performance, transport independent, multi-platform implementation of RFC3720";
|
2021-01-09 10:05:03 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2020-03-05 13:40:28 +00:00
|
|
|
homepage = "https://www.open-iscsi.com";
|
2016-02-29 16:37:20 +00:00
|
|
|
platforms = platforms.linux;
|
2018-11-19 12:34:30 +00:00
|
|
|
maintainers = with maintainers; [ cleverca22 zaninime ];
|
2010-08-30 10:40:44 +01:00
|
|
|
};
|
|
|
|
}
|