repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
btrbk: add mainProgram
[NixPkgs.git]
/
pkgs
/
by-name
/
ja
/
jazz2-content
/
package.nix
blob
d30f6a771b23d45f82f797e883b2a60a72fea55f
1
{ jazz2
2
, lib
3
, runCommandLocal
4
}:
5
6
runCommandLocal "jazz2-content"
7
{
8
inherit (jazz2) version src;
9
10
meta = (builtins.removeAttrs jazz2.meta ["mainProgram"]) // {
11
description = "Assets needed for jazz2";
12
platforms = lib.platforms.all;
13
};
14
} ''
15
cp -r $src/Content $out
16
''