mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #10503 from cleverca22/master
open-iscsi: save the staticly linked binary in its own output for use in the initrd
This commit is contained in:
commit
12277d2a38
1 changed files with 10 additions and 1 deletions
|
@ -1,8 +1,11 @@
|
|||
{ stdenv, fetchurl }:
|
||||
{ stdenv, fetchurl, nukeReferences }:
|
||||
let
|
||||
pname = "open-iscsi-2.0-873";
|
||||
in stdenv.mkDerivation {
|
||||
name = "${pname}";
|
||||
outputs = [ "out" "iscsistart" ];
|
||||
|
||||
buildInputs = [ nukeReferences ];
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.open-iscsi.org/bits/${pname}.tar.gz";
|
||||
|
@ -15,6 +18,12 @@ in stdenv.mkDerivation {
|
|||
sed -i 's|/usr/|/|' Makefile
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
mkdir -pv $iscsistart/bin/
|
||||
cp -v usr/iscsistart $iscsistart/bin/
|
||||
nuke-refs $iscsistart/bin/iscsistart
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "A high performance, transport independent, multi-platform implementation of RFC3720";
|
||||
license = stdenv.lib.licenses.gpl2Plus;
|
||||
|
|
Loading…
Reference in a new issue