diff options
author | tv <tv@krebsco.de> | 2020-12-02 00:45:50 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2020-12-02 00:45:50 +0100 |
commit | d60b1b793f3a1635c1fe30aa11b64831fd665b4f (patch) | |
tree | d484b1315dab9b6c3d230118f6e33b0888f0aca5 /makefu/5pkgs/hactool/default.nix | |
parent | 29827720520b6a4885dbdcb3237070e6e45dd910 (diff) | |
parent | 813eefa3c55fd1cd234b0adb1da7286bd761b579 (diff) |
Merge remote-tracking branch 'prism/master' into master
Diffstat (limited to 'makefu/5pkgs/hactool/default.nix')
-rw-r--r-- | makefu/5pkgs/hactool/default.nix | 30 |
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 0bdaeb4be..000000000 --- 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 ]; - }; -} |