ocz-toolbox: remove (obsoleted by SSD Guru)

This commit is contained in:
Nikolay Amiantov 2015-03-29 05:04:44 +03:00
parent f0c54d671a
commit fb8ed6efd4
2 changed files with 0 additions and 39 deletions

View file

@ -1,37 +0,0 @@
{ stdenv, fetchurl, libXrender, fontconfig, freetype, libXext, libX11 }:
let arch = if stdenv.system == "x86_64-linux" then "64"
else if stdenv.system == "i686-linux" then "32"
else abort "OCZ Toolbox only support {x86-64,i686}-linux targets";
in stdenv.mkDerivation rec {
version = "4.9.0.634";
name = "ocz-toolbox-${version}";
src = fetchurl {
url = "http://ocz.com/consumer/download/firmware/OCZToolbox_v${version}_linux.tar.gz";
sha256 = "0h51p5bg9h2smxxy1r4xkzzjjavhgql7yy12qmjk0vbh13flgx3y";
};
prePatch = ''
cd linux${arch}
'';
libPath = stdenv.lib.makeLibraryPath [ stdenv.cc.cc libXrender fontconfig freetype libXext libX11 ];
installPhase = ''
install -Dm755 OCZToolbox $out/bin/OCZToolbox
patchelf \
--interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
--set-rpath "$libPath" \
$out/bin/OCZToolbox
'';
dontStrip = true;
meta = with stdenv.lib; {
description = "Update firmware and BIOS, secure erase, view SMART attributes, and view drive details of your OCZ SSD";
homepage = "http://ocz.com/consumer/download/firmware";
license = licenses.unfree;
maintainers = with maintainers; [ abbradar ];
};
}

View file

@ -2179,8 +2179,6 @@ let
obnam = callPackage ../tools/backup/obnam { };
ocz-toolbox = callPackage ../os-specific/linux/ocz-toolbox { };
odt2txt = callPackage ../tools/text/odt2txt { };
odamex = callPackage ../games/odamex { };