pkgs.hactool: fix sha256sum
This commit is contained in:
parent
05e3e79d2d
commit
1d78ac0d6a
|
@ -1,4 +1,5 @@
|
||||||
{ lib, stdenv, fetchFromGitHub }:
|
{ lib, stdenv, fetchFromGitHub
|
||||||
|
}:
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "hactool";
|
pname = "hactool";
|
||||||
name = "${pname}-${version}";
|
name = "${pname}-${version}";
|
||||||
|
@ -8,16 +9,16 @@ stdenv.mkDerivation rec {
|
||||||
owner = "SciresM";
|
owner = "SciresM";
|
||||||
repo = "hactool";
|
repo = "hactool";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "162zv7my79a5ssn6zwk1yh64jjwlzr9kiplbpyvj4ly79dpngwyn";
|
sha256 = "0305ngsnwm8npzgyhyifasi4l802xnfz19r0kbzzniirmcn4082d";
|
||||||
};
|
};
|
||||||
|
|
||||||
preBuild = ''
|
preBuild = ''
|
||||||
cp config.mk.template config.mk
|
cp config.mk.template config.mk
|
||||||
'';
|
'';
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
install -D hactool $out/bin/hactool
|
install -D hactool $out/bin/hactool
|
||||||
'';
|
'';
|
||||||
|
buildInputs = [ ];
|
||||||
|
nativeBuildInputs = [ ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "tool to view information about, decrypt, and extract common file formats for the Nintendo Switch, especially Nintendo Content Archives";
|
description = "tool to view information about, decrypt, and extract common file formats for the Nintendo Switch, especially Nintendo Content Archives";
|
||||||
|
|
Loading…
Reference in a new issue