2016-09-23 15:55:50 +01:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig
|
2018-07-17 21:11:16 +01:00
|
|
|
, asciidoc, docbook_xsl, fuse, libuuid, libxslt }:
|
2016-09-23 15:55:50 +01:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2016-09-23 15:55:50 +01:00
|
|
|
name = "vmfs-tools";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "glandium";
|
|
|
|
repo = "vmfs-tools";
|
|
|
|
rev = "4ab76ef5b074bdf06e4b518ff6d50439de05ae7f";
|
|
|
|
sha256 = "14y412ww5hxk336ils62s3fwykfh6mx1j0iiaa5cwc615pi6qvi4";
|
|
|
|
};
|
|
|
|
|
2018-07-17 21:11:16 +01:00
|
|
|
nativeBuildInputs = [ asciidoc docbook_xsl fuse libuuid libxslt pkgconfig ];
|
2016-09-23 15:55:50 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/glandium/vmfs-tools;
|
|
|
|
description = "FUSE-based VMFS (vmware) mounting tools";
|
|
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
|
|
platforms = platforms.linux;
|
2018-08-04 15:15:01 +01:00
|
|
|
license = licenses.gpl2;
|
2016-09-23 15:55:50 +01:00
|
|
|
};
|
|
|
|
}
|