2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2017-10-06 10:49:42 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "u3-tool";
|
|
|
|
version = "0.3";
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz";
|
2017-10-06 10:49:42 +00:00
|
|
|
sha256 = "1p9c9kibd1pdbdfa0nd0i3n7bvzi3xg0chm38jg3xfl8gsn0390f";
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-10-06 10:49:42 +00:00
|
|
|
description = "Tool for controlling the special features of a 'U3 smart drive' USB Flash disk";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://sourceforge.net/projects/u3-tool/";
|
2024-04-26 11:35:31 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2017-10-06 10:49:42 +00:00
|
|
|
platforms = with platforms; linux;
|
|
|
|
maintainers = with maintainers; [ makefu ];
|
2023-11-23 21:09:35 +00:00
|
|
|
mainProgram = "u3-tool";
|
2017-10-06 10:49:42 +00:00
|
|
|
};
|
|
|
|
}
|