about summary refs log tree commit diff
path: root/nixpkgs/pkgs/games/jazz2/content.nix
blob: 0a0e72075635a2fe94d9e18bfebf3397706f6bbb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ jazz2
, lib
, runCommand
}:

runCommand "jazz2-content"
{
  inherit (jazz2) version src;

  preferLocalBuild = true;

  meta = with lib; {
    description = "Assets needed for jazz2";
    homepage = "https://github.com/deathkiller/jazz2-native";
    license = licenses.gpl3;
    maintainers = with maintainers; [ surfaceflinger ];
  };
} ''
  cp -r $src/Content $out
''