aboutsummaryrefslogtreecommitdiff
path: root/pkgs/tools/networking/tgt
diff options
context:
space:
mode:
authorDaniel Schaefer <git@danielschaefer.me>2019-07-30 01:21:00 +0200
committerRobin Gloster <mail@glob.in>2019-07-29 23:21:00 +0000
commit2f5beaec0802085a01cd7e96265f935e3de74afe (patch)
tree2812bfcfde551fe0d8f2b48cb78abccd9b7e41e9 /pkgs/tools/networking/tgt
parent4107e208a1ccc190463f7b7894b62252fa865727 (diff)
tgt: Install systemd tgtd.service (#65565)
* tgt: Add homepage * tgt: tgt-admin needs lsof, sg3_utils and tgtadm Otherwise it fails with return code 72057594037927935. * tgt: libxslt and docbook_xsl not needed at runtime They're only there to build the documentation. * tgt: Install systemd tgtd.service Resolves #38012 * tgt: Add JohnAZoidberg as maintainer
Diffstat (limited to 'pkgs/tools/networking/tgt')
-rw-r--r--pkgs/tools/networking/tgt/default.nix31
1 files changed, 23 insertions, 8 deletions
diff --git a/pkgs/tools/networking/tgt/default.nix b/pkgs/tools/networking/tgt/default.nix
index 61aaa263b35..478c1ed35f2 100644
--- a/pkgs/tools/networking/tgt/default.nix
+++ b/pkgs/tools/networking/tgt/default.nix
@@ -1,5 +1,6 @@
-{ stdenv, fetchFromGitHub, libxslt, libaio, systemd, perl, perlPackages
-, docbook_xsl }:
+{ stdenv, lib, fetchFromGitHub, libxslt, libaio, systemd, perl, perlPackages
+, docbook_xsl, coreutils, lsof, rdma-core, makeWrapper, sg3_utils, utillinux
+}:
stdenv.mkDerivation rec {
pname = "tgt";
@@ -12,7 +13,9 @@ stdenv.mkDerivation rec {
sha256 = "18bp7fcpv7879q3ppdxlqj7ayqmlh5zwrkz8gch6rq9lkmmrklrf";
};
- buildInputs = [ libxslt systemd libaio docbook_xsl ];
+ nativeBuildInputs = [ libxslt docbook_xsl makeWrapper ];
+
+ buildInputs = [ systemd libaio ];
makeFlags = [
"PREFIX=${placeholder "out"}"
@@ -31,14 +34,26 @@ stdenv.mkDerivation rec {
'';
postInstall = ''
- sed -i 's|#!/usr/bin/perl|#! ${perl}/bin/perl -I${perlPackages.ConfigGeneral}/${perl.libPrefix}|' $out/sbin/tgt-admin
+ substituteInPlace $out/sbin/tgt-admin \
+ --replace "#!/usr/bin/perl" "#! ${perl}/bin/perl -I${perlPackages.ConfigGeneral}/${perl.libPrefix}"
+ wrapProgram $out/sbin/tgt-admin --prefix PATH : \
+ ${lib.makeBinPath [ lsof sg3_utils (placeholder "out") ]}
+
+ install -D scripts/tgtd.service $out/etc/systemd/system/tgtd.service
+ substituteInPlace $out/etc/systemd/system/tgtd.service \
+ --replace "/usr/sbin/tgt" "$out/bin/tgt"
+
+ # See https://bugzilla.redhat.com/show_bug.cgi?id=848942
+ sed -i '/ExecStart=/a ExecStartPost=${coreutils}/bin/sleep 5' $out/etc/systemd/system/tgtd.service
'';
enableParallelBuilding = true;
- meta = {
- description = "iSCSI Target daemon with rdma support";
- license = stdenv.lib.licenses.gpl2;
- platforms = stdenv.lib.platforms.linux;
+ meta = with stdenv.lib; {
+ description = "iSCSI Target daemon with RDMA support";
+ homepage = "http://stgt.sourceforge.net/";
+ license = licenses.gpl2;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ johnazoidberg ];
};
}