ma pkgs.u3_tool: init at 0.3
This commit is contained in:
parent
294a62b355
commit
27a0aff4a2
22
makefu/5pkgs/u3_tool/default.nix
Normal file
22
makefu/5pkgs/u3_tool/default.nix
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{ stdenv, fetchurl }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
proj = "u3-tool";
|
||||||
|
name = "${proj}-${version}";
|
||||||
|
version = "0.3";
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/${proj}/${name}.tar.gz";
|
||||||
|
sha256 = "1p9c9kibd1pdbdfa0nd0i3n7bvzi3xg0chm38jg3xfl8gsn0390f";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Tool for controlling the special features of a 'U3 smart drive' USB Flash disk.";
|
||||||
|
homepage = https://sourceforge.net/projects/u3-tool/ ;
|
||||||
|
license = stdenv.lib.licenses.gpl2;
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
maintainers = with stdenv.lib.maintainers; [ makefu ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user