summaryrefslogtreecommitdiff
path: root/pkgs/tools/filesystems/vmfs-tools/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/filesystems/vmfs-tools/default.nix')
-rw-r--r--pkgs/tools/filesystems/vmfs-tools/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/tools/filesystems/vmfs-tools/default.nix b/pkgs/tools/filesystems/vmfs-tools/default.nix
new file mode 100644
index 000000000000..d563f4380209
--- /dev/null
+++ b/pkgs/tools/filesystems/vmfs-tools/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchFromGitHub, pkgconfig
+, asciidoc, docbook_xml_xslt, fuse, libuuid, libxslt }:
+
+stdenv.mkDerivation rec {
+ name = "vmfs-tools";
+
+ src = fetchFromGitHub {
+ owner = "glandium";
+ repo = "vmfs-tools";
+ rev = "4ab76ef5b074bdf06e4b518ff6d50439de05ae7f";
+ sha256 = "14y412ww5hxk336ils62s3fwykfh6mx1j0iiaa5cwc615pi6qvi4";
+ };
+
+ nativeBuildInputs = [ asciidoc docbook_xml_xslt fuse libuuid libxslt pkgconfig ];
+
+ 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;
+ };
+}