Skip to content

Commit fc401b7

Browse files
committed
veloren: fixup
- Fix broken install command (metainfo and pixmaps being files) See #431034 (comment) - Remove leftover env variable from testing
1 parent 0a64adc commit fc401b7

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

pkgs/by-name/ve/veloren/package.nix

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ rustPlatform.buildRustPackage {
6161
env = {
6262
# Enable unstable features, see https://gitlab.com/veloren/veloren/-/issues/264
6363
RUSTC_BOOTSTRAP = true;
64-
RUSTC_BREAK_ON_ICE = true;
6564

6665
# Set version info, required by veloren-common
6766
NIX_GIT_TAG = "v${version}";
@@ -94,8 +93,8 @@ rustPlatform.buildRustPackage {
9493
postInstall = ''
9594
# Icons
9695
install -Dm644 assets/voxygen/net.veloren.veloren.desktop -t "$out/share/applications"
97-
install -Dm644 assets/voxygen/net.veloren.veloren.png "$out/share/pixmaps"
98-
install -Dm644 assets/voxygen/net.veloren.veloren.metainfo.xml "$out/share/metainfo"
96+
install -Dm644 assets/voxygen/net.veloren.veloren.png -t "$out/share/pixmaps"
97+
install -Dm644 assets/voxygen/net.veloren.veloren.metainfo.xml -t "$out/share/metainfo"
9998
# Assets directory
10099
mkdir -p "$out/share/veloren"; cp -ar assets "$out/share/veloren/"
101100
'';

0 commit comments

Comments
 (0)