pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / tools / archivers / ndstool / default.nix
blob6bbc5f50d6442ee1a4037a5fb48d510b3d872c81
1 { lib, stdenv, fetchFromGitHub, autoconf, automake }:
3 stdenv.mkDerivation rec {
4   pname = "ndstool";
5   version = "2.1.2";
7   src = fetchFromGitHub {
8     owner = "devkitPro";
9     repo = "ndstool";
10     rev = "v${version}";
11     sha256 = "0isnm0is5k6dgi2n2c3mysyr5hpwikp5g0s3ix7ms928z04l8ccm";
12   };
14   nativeBuildInputs = [ autoconf automake ];
16   preConfigure = "./autogen.sh";
18   meta = {
19     homepage = "https://github.com/devkitPro/ndstool";
20     description = "Tool to unpack and repack nds rom";
21     maintainers = [ lib.maintainers.marius851000 ];
22     license = lib.licenses.gpl3;
23     mainProgram = "ndstool";
24   };