mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
20 lines
372 B
Nix
20 lines
372 B
Nix
{ 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
|
|
''
|