summaryrefslogtreecommitdiffstats
path: root/makefu
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2020-08-16 22:42:51 +0200
committermakefu <github@syntax-fehler.de>2020-08-16 22:42:51 +0200
commit1d78ac0d6a78048903cc159b82ec6b405b7e16ab (patch)
tree6bbe3344e18c22fd7ec702b06aa5ae59d08797c8 /makefu
parent05e3e79d2d320f5c5fa31cf36ca83a22639fd056 (diff)
pkgs.hactool: fix sha256sum
Diffstat (limited to 'makefu')
-rw-r--r--makefu/5pkgs/hactool/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/makefu/5pkgs/hactool/default.nix b/makefu/5pkgs/hactool/default.nix
index a4ebd9f7..0bdaeb4b 100644
--- a/makefu/5pkgs/hactool/default.nix
+++ b/makefu/5pkgs/hactool/default.nix
@@ -1,4 +1,5 @@
-{ lib, stdenv, fetchFromGitHub }:
+{ lib, stdenv, fetchFromGitHub
+}:
stdenv.mkDerivation rec {
pname = "hactool";
name = "${pname}-${version}";
@@ -8,16 +9,16 @@ stdenv.mkDerivation rec {
owner = "SciresM";
repo = "hactool";
rev = version;
- sha256 = "162zv7my79a5ssn6zwk1yh64jjwlzr9kiplbpyvj4ly79dpngwyn";
+ sha256 = "0305ngsnwm8npzgyhyifasi4l802xnfz19r0kbzzniirmcn4082d";
};
-
preBuild = ''
cp config.mk.template config.mk
'';
-
installPhase = ''
install -D hactool $out/bin/hactool
'';
+ buildInputs = [ ];
+ nativeBuildInputs = [ ];
meta = {
description = "tool to view information about, decrypt, and extract common file formats for the Nintendo Switch, especially Nintendo Content Archives";