summaryrefslogtreecommitdiffstats
path: root/makefu
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2020-11-18 23:49:07 +0100
committermakefu <github@syntax-fehler.de>2020-11-18 23:49:07 +0100
commitc5a1724aa6332a31113ee1a9f0b3bc4741b966b2 (patch)
tree2c76dcd162e6719f40cadc1373de46538460d131 /makefu
parent6a8a7781bcbeeee23354e7caaeb8ecd80fc00218 (diff)
ma pkgs.hactool: rip
Diffstat (limited to 'makefu')
-rw-r--r--makefu/5pkgs/hactool/default.nix30
1 files changed, 0 insertions, 30 deletions
diff --git a/makefu/5pkgs/hactool/default.nix b/makefu/5pkgs/hactool/default.nix
deleted file mode 100644
index 0bdaeb4b..00000000
--- a/makefu/5pkgs/hactool/default.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ lib, stdenv, fetchFromGitHub
-}:
-stdenv.mkDerivation rec {
- pname = "hactool";
- name = "${pname}-${version}";
- version = "1.4.0";
-
- src = fetchFromGitHub {
- owner = "SciresM";
- repo = "hactool";
- rev = version;
- 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";
- homepage = https://github.com/SciresM/hactool;
- license = stdenv.lib.licenses.isc;
- platforms = stdenv.lib.platforms.linux;
- maintainers = with stdenv.lib.maintainers; [ makefu ];
- };
-}