summary refs log tree commit diff
path: root/pkgs/applications/misc/johnny-reborn/with-data.nix
blob: 1e53edaa5b85a088896c6a0e9ee0d0e1449a4af9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{ lib
, stdenvNoCC
, fetchFromGitHub
, fetchzip
, johnny-reborn-engine
, makeWrapper
}:

stdenvNoCC.mkDerivation {
  pname = "johnny-reborn";
  inherit (johnny-reborn-engine) version;

  srcs =
    let
      sounds = fetchFromGitHub {
        owner = "nivs1978";
        repo = "Johnny-Castaway-Open-Source";
        rev = "be6afefd43a3334acc66fc9d777c162c8bfb9558";
        hash = "sha256-rtZVCn4KbEBVwaSQ4HZhMoDEI5Q9IPj9SZywgAx0MPY=";
      };

      resources = fetchzip {
        name = "scrantic-source";
        url = "https://archive.org/download/johnny-castaway-screensaver/scrantic-run.zip";
        hash = "sha256-Q9chCYReOQEmkTyIkYo+D+OXYUqxPNOOEEmiFh8yaw4=";
        stripRoot = false;
      };
    in
    [
      sounds
      resources
    ];

  nativeBuildInputs = [ makeWrapper ];

  sourceRoot = "source";

  dontConfigure = true;
  dontBuild = true;

  installPhase = ''
    runHook preInstall

    mkdir -p $out
    cp -t $out/ \
      ../scrantic-source/RESOURCE.* \
      JCOS/Resources/sound*.wav

    makeWrapper \
      ${johnny-reborn-engine}/jc_reborn \
      $out/jc_reborn \
      --chdir $out

    runHook postInstall
  '';

  meta = {
    description = "An open-source engine for the classic \"Johnny Castaway\" screensaver (ready to use, with resources)";
    license = lib.licenses.unfree;
    maintainers = with lib.maintainers; [ pedrohlc ];
    inherit (johnny-reborn-engine.meta) homepage platforms;
  };
}