summary refs log tree commit diff
path: root/pkgs/tools/filesystems/u3-tool/default.nix
blob: f18eb9e82271b62ed99f16ab17ded3b6f08e0872 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  pname = "u3-tool";
  version = "0.3";

  enableParallelBuilding = true;

  src = fetchurl {
    url = "mirror://sourceforge/${pname}/${pname}-${version}.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 ];
  };
}