ma pkgs.hactool: fix metadata
This commit is contained in:
parent
141fbe3c7e
commit
87904ae328
|
@ -1,5 +1,4 @@
|
||||||
{ lib, stdenv, fetchFromGitHub
|
{ lib, stdenv, fetchFromGitHub }:
|
||||||
}:
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "hactool";
|
pname = "hactool";
|
||||||
name = "${pname}-${version}";
|
name = "${pname}-${version}";
|
||||||
|
@ -9,21 +8,21 @@ stdenv.mkDerivation rec {
|
||||||
owner = "SciresM";
|
owner = "SciresM";
|
||||||
repo = "hactool";
|
repo = "hactool";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "0305ngsnwm8npzgyhyifasi4l802xnfz19r0kbzzniirmcn4082d";
|
sha256 = "162zv7my79a5ssn6zwk1yh64jjwlzr9kiplbpyvj4ly79dpngwyn";
|
||||||
};
|
};
|
||||||
|
|
||||||
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 = "PulseAudio volumene meter";
|
description = "tool to view information about, decrypt, and extract common file formats for the Nintendo Switch, especially Nintendo Content Archives";
|
||||||
homepage = http://0pointer.de/lennart/projects/pavumeter;
|
homepage = https://github.com/SciresM/hactool;
|
||||||
license = stdenv.lib.licenses.gpl2;
|
license = stdenv.lib.licenses.isc;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = stdenv.lib.platforms.linux;
|
||||||
maintainers = with stdenv.lib.maintainers; [ makefu ];
|
maintainers = with stdenv.lib.maintainers; [ makefu ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue