mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #62120 from marius851000/ndstool
ndstool: init at 2.1.2
This commit is contained in:
commit
b73d7705cc
2 changed files with 26 additions and 0 deletions
24
pkgs/tools/archivers/ndstool/default.nix
Normal file
24
pkgs/tools/archivers/ndstool/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue