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