u3-tool: init at 0.3

This commit is contained in:
makefu 2017-10-06 12:49:42 +02:00
parent 7453c9e32d
commit be86af09b4
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "u3-tool";
version = "0.3";
name = "${pname}-${version}";
enableParallelBuilding = true;
src = fetchurl {
url = "mirror://sourceforge/${pname}/${name}.tar.gz";
sha256 = "1p9c9kibd1pdbdfa0nd0i3n7bvzi3xg0chm38jg3xfl8gsn0390f";
};
meta = with stdenv.lib; {
description = "Tool for controlling the special features of a 'U3 smart drive' USB Flash disk";
homepage = https://sourceforge.net/projects/u3-tool/ ;
license = licenses.gpl2;
platforms = with platforms; linux;
maintainers = with maintainers; [ makefu ];
};
}

View File

@ -1446,6 +1446,8 @@ with pkgs;
cuetools = callPackage ../tools/cd-dvd/cuetools { };
u3-tool = callPackage ../tools/filesystems/u3-tool { };
unifdef = callPackage ../development/tools/misc/unifdef { };
unionfs-fuse = callPackage ../tools/filesystems/unionfs-fuse { };