ps3iso-utils: init at 277db7de

authored by Sofi and committed by tomberek cefe6054 5c2cdd57

+40
+38
pkgs/tools/games/ps3iso-utils/default.nix
···
··· 1 + { stdenv 2 + , fetchFromGitHub 3 + , unstableGitUpdater 4 + , lib 5 + }: 6 + stdenv.mkDerivation { 7 + pname = "ps3iso-utils"; 8 + version = "277db7de"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "bucanero"; 12 + repo = "ps3iso-utils"; 13 + rev = "878090980a9042c61901920fed1b034af215e8c7"; 14 + hash = "sha256-HUx5BqHBvVMUHReuJL0RcyxXOnufSt1Zi/ieAlI2eoc="; 15 + }; 16 + 17 + buildPhase = '' 18 + mkdir -p bin/ 19 + find . -type f -name "*.c" -exec \ 20 + sh -c 'OFILE=`basename "{}" ".c"` && $CC "{}" -o bin/"$OFILE"' \; 21 + ''; 22 + 23 + installPhase = '' 24 + mkdir -p $out/bin 25 + cp bin/* $out/bin 26 + ''; 27 + 28 + passthru.updateScript = unstableGitUpdater { }; 29 + 30 + meta = with lib; { 31 + description = "Estwald's PS3ISO utilities"; 32 + homepage = "https://github.com/bucanero/ps3iso-utils"; 33 + license = licenses.gpl3Only; 34 + maintainers = with maintainers; [ soupglasses ]; 35 + platforms = platforms.all; 36 + }; 37 + } 38 +
+2
pkgs/top-level/all-packages.nix
··· 12205 12206 ps3-disc-dumper = callPackage ../tools/games/ps3-disc-dumper { }; 12207 12208 ps3netsrv = callPackage ../servers/ps3netsrv { }; 12209 12210 pscircle = callPackage ../os-specific/linux/pscircle { };
··· 12205 12206 ps3-disc-dumper = callPackage ../tools/games/ps3-disc-dumper { }; 12207 12208 + ps3iso-utils = callPackage ../tools/games/ps3iso-utils { }; 12209 + 12210 ps3netsrv = callPackage ../servers/ps3netsrv { }; 12211 12212 pscircle = callPackage ../os-specific/linux/pscircle { };