lol
0
fork

Configure Feed

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

at master 49 lines 907 B view raw
1{ 2 lib, 3 stdenv, 4 fetchFromGitHub, 5 pkg-config, 6 asciidoc, 7 docbook_xsl, 8 fuse, 9 libuuid, 10 libxslt, 11}: 12 13stdenv.mkDerivation rec { 14 pname = "vmfs-tools"; 15 version = "0.2.5.20160116"; 16 17 src = fetchFromGitHub { 18 owner = "glandium"; 19 repo = "vmfs-tools"; 20 rev = "4ab76ef5b074bdf06e4b518ff6d50439de05ae7f"; 21 sha256 = "14y412ww5hxk336ils62s3fwykfh6mx1j0iiaa5cwc615pi6qvi4"; 22 }; 23 24 nativeBuildInputs = [ 25 asciidoc 26 docbook_xsl 27 libxslt 28 pkg-config 29 ]; 30 31 buildInputs = [ 32 fuse 33 libuuid 34 ]; 35 36 enableParallelBuilding = true; 37 38 postInstall = '' 39 install -Dm444 -t $out/share/doc/vmfs-tools AUTHORS LICENSE README TODO 40 ''; 41 42 meta = with lib; { 43 description = "FUSE-based VMFS (vmware) file system tools"; 44 maintainers = with maintainers; [ peterhoeg ]; 45 license = licenses.gpl2Plus; 46 platforms = platforms.linux; 47 inherit (src.meta) homepage; 48 }; 49}