Merge pull request #62120 from marius851000/ndstool

ndstool: init at 2.1.2
This commit is contained in:
Matthew Bauer 2019-05-27 21:52:52 -04:00 committed by GitHub
commit b73d7705cc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ stdenv, fetchFromGitHub, autoconf, automake }:
stdenv.mkDerivation rec {
pname = "ndstool";
version = "2.1.2";
src = fetchFromGitHub {
owner = "devkitPro";
repo = "ndstool";
rev = "v${version}";
sha256 = "0isnm0is5k6dgi2n2c3mysyr5hpwikp5g0s3ix7ms928z04l8ccm";
};
nativeBuildInputs = [ autoconf automake ];
preConfigure = "./autogen.sh";
meta = {
homepage = https://github.com/devkitPro/ndstool;
description = "A tool to unpack and repack nds rom";
maintainers = [ stdenv.lib.maintainers.marius851000 ];
license = stdenv.lib.licenses.gpl3;
};
}

View file

@ -4766,6 +4766,8 @@ in
nextcloud-news-updater = callPackage ../servers/nextcloud/news-updater.nix { }; nextcloud-news-updater = callPackage ../servers/nextcloud/news-updater.nix { };
ndstool = callPackage ../tools/archivers/ndstool { };
ngrep = callPackage ../tools/networking/ngrep { }; ngrep = callPackage ../tools/networking/ngrep { };
ngrok = ngrok-2; ngrok = ngrok-2;