vmfs-tools: init at 2016-01-16
This commit is contained in:
parent
9b2fbb776b
commit
cbec6a304a
24
pkgs/tools/filesystems/vmfs-tools/default.nix
Normal file
24
pkgs/tools/filesystems/vmfs-tools/default.nix
Normal file
@ -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;
|
||||||
|
};
|
||||||
|
}
|
@ -10183,6 +10183,8 @@ in
|
|||||||
|
|
||||||
cbfstool = callPackage ../applications/virtualization/cbfstool { };
|
cbfstool = callPackage ../applications/virtualization/cbfstool { };
|
||||||
|
|
||||||
|
vmfs-tools = callPackage ../tools/filesystems/vmfs-tools { };
|
||||||
|
|
||||||
pgpool92 = pgpool.override { postgresql = postgresql92; };
|
pgpool92 = pgpool.override { postgresql = postgresql92; };
|
||||||
pgpool93 = pgpool.override { postgresql = postgresql93; };
|
pgpool93 = pgpool.override { postgresql = postgresql93; };
|
||||||
pgpool94 = pgpool.override { postgresql = postgresql94; };
|
pgpool94 = pgpool.override { postgresql = postgresql94; };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user