ctrtool: init at 0.15
This commit is contained in:
parent
df47f8b147
commit
006d4b0c54
30
pkgs/tools/archivers/ctrtool/default.nix
Normal file
30
pkgs/tools/archivers/ctrtool/default.nix
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{ stdenv, fetchFromGitHub }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "ctrtool";
|
||||||
|
version = "0.15";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "profi200";
|
||||||
|
repo = "Project_CTR";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1l6z05x18s1crvb283yvynlwsrpa1pdx1nbijp99plw06p88h4va";
|
||||||
|
};
|
||||||
|
|
||||||
|
sourceRoot = "source/ctrtool";
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
installPhase = "
|
||||||
|
mkdir $out/bin -p
|
||||||
|
cp ctrtool $out/bin/ctrtool
|
||||||
|
";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
license = licenses.mit;
|
||||||
|
description = "A tool to extract data from a 3ds rom";
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = [ maintainers.marius851000 ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -712,6 +712,8 @@ in
|
|||||||
|
|
||||||
cozy = callPackage ../applications/audio/cozy-audiobooks { };
|
cozy = callPackage ../applications/audio/cozy-audiobooks { };
|
||||||
|
|
||||||
|
ctrtool = callPackage ../tools/archivers/ctrtool { };
|
||||||
|
|
||||||
crumbs = callPackage ../applications/misc/crumbs { };
|
crumbs = callPackage ../applications/misc/crumbs { };
|
||||||
|
|
||||||
deskew = callPackage ../applications/graphics/deskew { };
|
deskew = callPackage ../applications/graphics/deskew { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user