try to fix grapejuice package
This commit is contained in:
parent
a1525073e7
commit
cdb7f5c714
2 changed files with 4 additions and 2 deletions
|
@ -44,7 +44,7 @@
|
||||||
wine.enable = true;
|
wine.enable = true;
|
||||||
lutris.enable = true;
|
lutris.enable = true;
|
||||||
steam.enable = true;
|
steam.enable = true;
|
||||||
grapejuice.enable = false;
|
grapejuice.enable = true;
|
||||||
};
|
};
|
||||||
media = {
|
media = {
|
||||||
gimp.enable = true;
|
gimp.enable = true;
|
||||||
|
|
|
@ -89,8 +89,10 @@ python3Packages.buildPythonApplication rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
mkdir -p "$out/share/icons" "$out/share/applications" "$out/share/mime/packages"
|
mkdir -p "$out/share/icons" "$out/share/applications" "$out/share/mime/packages" "$out/bin"
|
||||||
cp -r src/grapejuice_common/assets/desktop/* $out/share/applications/
|
cp -r src/grapejuice_common/assets/desktop/* $out/share/applications/
|
||||||
|
cp -r src/grapejuice_packaging/packaging_resources/bin/* $out/bin
|
||||||
|
chmod +x $out/bin/*
|
||||||
cp -r src/grapejuice_common/assets/icons $out/share/
|
cp -r src/grapejuice_common/assets/icons $out/share/
|
||||||
cp src/grapejuice_common/assets/mime_xml/*.xml $out/share/mime/packages/
|
cp src/grapejuice_common/assets/mime_xml/*.xml $out/share/mime/packages/
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue