open-iscsi: from 2.0.873 to a git snapshot

The last release was in May 2012 with many fixes hitting git since then.
Also open-iscsi has broken out the open-isns part as extra library, so
we have that as new dependency.
This commit is contained in:
Clemens Fruhwirth 2016-04-24 14:37:38 +02:00
parent 82dd20a14d
commit e091d27944

View File

@ -1,18 +1,16 @@
{ stdenv, fetchurl, nukeReferences }:
let
pname = "open-iscsi-2.0-873";
in stdenv.mkDerivation {
name = pname;
{ stdenv, fetchFromGitHub, nukeReferences, automake, autoconf, libtool, gettext, utillinux, openisns, openssl }:
stdenv.mkDerivation rec {
name = "open-iscsi-${version}";
version = "2.0-873-${stdenv.lib.substring 0 7 src.rev}";
outputs = [ "out" "iscsistart" ];
buildInputs = [ nukeReferences ];
buildInputs = [ nukeReferences automake autoconf libtool gettext utillinux openisns.lib openssl ];
src = fetchurl {
urls = [
"http://www.open-iscsi.org/bits/${pname}.tar.gz"
"http://pkgs.fedoraproject.org/repo/pkgs/iscsi-initiator-utils/${pname}.tar.gz/8b8316d7c9469149a6cc6234478347f7/${pname}.tar.gz"
];
sha256 = "1nbwmj48xzy45h52917jbvyqpsfg9zm49nm8941mc5x4gpwz5nbx";
src = fetchFromGitHub {
owner = "open-iscsi";
repo = "open-iscsi";
rev = "4c1f2d90ef1c73e33d9f1e4ae9c206ffe015a8f9";
sha256 = "0h030zk4zih3l8z5662b3kcifdxlakbwwkz1afb7yf0cicds7va8";
};
DESTDIR = "$(out)";
@ -30,7 +28,7 @@ in stdenv.mkDerivation {
meta = with stdenv.lib; {
description = "A high performance, transport independent, multi-platform implementation of RFC3720";
license = licenses.gpl2Plus;
homepage = http://www.open-iscsi.org;
homepage = http://www.open-iscsi.com;
platforms = platforms.linux;
};
}