mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
17 lines
285 B
Nix
17 lines
285 B
Nix
{ jazz2
|
|
, lib
|
|
, runCommandLocal
|
|
}:
|
|
|
|
runCommandLocal "jazz2-content"
|
|
{
|
|
inherit (jazz2) version src;
|
|
|
|
meta = (builtins.removeAttrs jazz2.meta ["mainProgram"]) // {
|
|
description = "Assets needed for jazz2";
|
|
platforms = lib.platforms.all;
|
|
};
|
|
} ''
|
|
cp -r $src/Content $out
|
|
''
|