depot/third_party/nixpkgs/pkgs/tools/filesystems/u3-tool/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

21 lines
599 B
Nix

{ 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 ];
};
}