Merge pull request #89610 from r-ryantm/auto-update/hactool

hactool: 1.3.3 -> 1.4.0
This commit is contained in:
Mario Rodas 2020-06-06 09:41:48 -05:00 committed by GitHub
commit ac58340b12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,19 +2,21 @@
stdenv.mkDerivation {
pname = "hactool";
version = "1.3.3";
version = "1.4.0";
src = fetchFromGitHub {
owner = "SciresM";
repo = "hactool";
rev = "1.3.3";
sha256 = "1qb51fck7liqc1ridms8wdlzgbdbvp6iv4an8jvmzhcj5p5xq631";
rev = "1.4.0";
sha256 = "0305ngsnwm8npzgyhyifasi4l802xnfz19r0kbzzniirmcn4082d";
};
preBuild = ''
mv config.mk.template config.mk
'';
makeFlags = stdenv.lib.optionals stdenv.isDarwin [ "CC=cc" ];
installPhase = ''
install -D hactool $out/bin/hactool
'';