nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

vmfs-tools: minor cleanup

+25 -11
+25 -11
pkgs/tools/filesystems/vmfs-tools/default.nix
··· 1 - { stdenv, fetchFromGitHub, pkgconfig 2 - , asciidoc, docbook_xsl, fuse, libuuid, libxslt }: 1 + { stdenv 2 + , fetchFromGitHub 3 + , pkgconfig 4 + , asciidoc 5 + , docbook_xsl 6 + , fuse 7 + , libuuid 8 + , libxslt 9 + }: 3 10 4 - stdenv.mkDerivation { 5 - name = "vmfs-tools"; 11 + stdenv.mkDerivation rec { 12 + pname = "vmfs-tools"; 13 + version = "0.2.5.20160116"; 6 14 7 15 src = fetchFromGitHub { 8 - owner = "glandium"; 9 - repo = "vmfs-tools"; 10 - rev = "4ab76ef5b074bdf06e4b518ff6d50439de05ae7f"; 16 + owner = "glandium"; 17 + repo = pname; 18 + rev = "4ab76ef5b074bdf06e4b518ff6d50439de05ae7f"; 11 19 sha256 = "14y412ww5hxk336ils62s3fwykfh6mx1j0iiaa5cwc615pi6qvi4"; 12 20 }; 13 21 14 - nativeBuildInputs = [ asciidoc docbook_xsl fuse libuuid libxslt pkgconfig ]; 22 + nativeBuildInputs = [ asciidoc docbook_xsl libxslt pkgconfig ]; 23 + 24 + buildInputs = [ fuse libuuid ]; 15 25 16 26 enableParallelBuilding = true; 17 27 28 + postInstall = '' 29 + install -Dm444 -t $out/share/doc/${pname} AUTHORS LICENSE README TODO 30 + ''; 31 + 18 32 meta = with stdenv.lib; { 19 - homepage = https://github.com/glandium/vmfs-tools; 20 - description = "FUSE-based VMFS (vmware) mounting tools"; 33 + description = "FUSE-based VMFS (vmware) file system tools"; 21 34 maintainers = with maintainers; [ peterhoeg ]; 22 - platforms = platforms.linux; 23 35 license = licenses.gpl2; 36 + platforms = platforms.linux; 37 + inherit (src.meta) homepage; 24 38 }; 25 39 }