summaryrefslogtreecommitdiffstats
path: root/makefu
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2020-08-16 22:15:43 +0200
committermakefu <github@syntax-fehler.de>2020-08-16 22:15:43 +0200
commit4fc1d5ea46a3a8d889a26d130921c357b2043668 (patch)
treef07339ad331be30e995a351e3df93429c3f4aef7 /makefu
parentb663b01807d9137e6c83a47f737fc8aa33be2a80 (diff)
ma pkgs.hactool: fix metadata
Diffstat (limited to 'makefu')
-rw-r--r--makefu/5pkgs/hactool/default.nix15
1 files changed, 7 insertions, 8 deletions
diff --git a/makefu/5pkgs/hactool/default.nix b/makefu/5pkgs/hactool/default.nix
index fc6f17a9..a4ebd9f7 100644
--- a/makefu/5pkgs/hactool/default.nix
+++ b/makefu/5pkgs/hactool/default.nix
@@ -1,5 +1,4 @@
-{ lib, stdenv, fetchFromGitHub
-}:
+{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "hactool";
name = "${pname}-${version}";
@@ -9,21 +8,21 @@ stdenv.mkDerivation rec {
owner = "SciresM";
repo = "hactool";
rev = version;
- sha256 = "0305ngsnwm8npzgyhyifasi4l802xnfz19r0kbzzniirmcn4082d";
+ sha256 = "162zv7my79a5ssn6zwk1yh64jjwlzr9kiplbpyvj4ly79dpngwyn";
};
+
preBuild = ''
cp config.mk.template config.mk
'';
+
installPhase = ''
install -D hactool $out/bin/hactool
'';
- buildInputs = [ ];
- nativeBuildInputs = [ ];
meta = {
- description = "PulseAudio volumene meter";
- homepage = http://0pointer.de/lennart/projects/pavumeter;
- license = stdenv.lib.licenses.gpl2;
+ 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 ];
};