vmfs-tools: minor cleanup
This commit is contained in:
parent
42f0be81ae
commit
476dd85c09
@ -1,25 +1,39 @@
|
|||||||
{ stdenv, fetchFromGitHub, pkgconfig
|
{ stdenv
|
||||||
, asciidoc, docbook_xsl, fuse, libuuid, libxslt }:
|
, fetchFromGitHub
|
||||||
|
, pkgconfig
|
||||||
|
, asciidoc
|
||||||
|
, docbook_xsl
|
||||||
|
, fuse
|
||||||
|
, libuuid
|
||||||
|
, libxslt
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
name = "vmfs-tools";
|
pname = "vmfs-tools";
|
||||||
|
version = "0.2.5.20160116";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "glandium";
|
owner = "glandium";
|
||||||
repo = "vmfs-tools";
|
repo = pname;
|
||||||
rev = "4ab76ef5b074bdf06e4b518ff6d50439de05ae7f";
|
rev = "4ab76ef5b074bdf06e4b518ff6d50439de05ae7f";
|
||||||
sha256 = "14y412ww5hxk336ils62s3fwykfh6mx1j0iiaa5cwc615pi6qvi4";
|
sha256 = "14y412ww5hxk336ils62s3fwykfh6mx1j0iiaa5cwc615pi6qvi4";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ asciidoc docbook_xsl fuse libuuid libxslt pkgconfig ];
|
nativeBuildInputs = [ asciidoc docbook_xsl libxslt pkgconfig ];
|
||||||
|
|
||||||
|
buildInputs = [ fuse libuuid ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
install -Dm444 -t $out/share/doc/${pname} AUTHORS LICENSE README TODO
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://github.com/glandium/vmfs-tools;
|
description = "FUSE-based VMFS (vmware) file system tools";
|
||||||
description = "FUSE-based VMFS (vmware) mounting tools";
|
|
||||||
maintainers = with maintainers; [ peterhoeg ];
|
maintainers = with maintainers; [ peterhoeg ];
|
||||||
platforms = platforms.linux;
|
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
inherit (src.meta) homepage;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user