biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / games / ps3iso-utils / default.nix
blob63093b59b2cc8d6528e0d59420ae1045791b90ab
1 { stdenv
2 , fetchFromGitHub
3 , unstableGitUpdater
4 , lib
5 }:
6 stdenv.mkDerivation {
7   pname = "ps3iso-utils";
8   version = "277db7de";
10   src = fetchFromGitHub {
11     owner = "bucanero";
12     repo = "ps3iso-utils";
13     rev = "878090980a9042c61901920fed1b034af215e8c7";
14     hash = "sha256-HUx5BqHBvVMUHReuJL0RcyxXOnufSt1Zi/ieAlI2eoc=";
15   };
17   buildPhase = ''
18     mkdir -p bin/
19     find . -type f -name "*.c" -exec \
20     sh -c 'OFILE=`basename "{}" ".c"` && $CC "{}" -o bin/"$OFILE"' \;
21   '';
23   installPhase = ''
24     mkdir -p $out/bin
25     cp bin/* $out/bin
26   '';
28   passthru.updateScript = unstableGitUpdater { };
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   };