85f96822a0
Rust 1.50.0 incorporated a Cargo change (rust-lang/cargo#8937) in which cargo vendor erroneously changed permissions of vendored crates. This was fixed in Rust 1.51.0 (rust-lang/cargo#9131). Unfortunately, this means that all cargoSha256/cargoHashes produced during the Rust 1.50.0 cycle are potentially broken. This change updates cargoSha256/cargoHash tree-wide. Fixes #121994.
44 lines
1.2 KiB
Nix
44 lines
1.2 KiB
Nix
{lib, rustPlatform, fetchFromGitHub, fetchurl, SDL2, makeWrapper, makeDesktopItem}:
|
|
|
|
let
|
|
desktopFile = makeDesktopItem {
|
|
name = "system-syzygy";
|
|
exec = "@out@/bin/syzygy";
|
|
comment = "A puzzle game";
|
|
desktopName = "System Syzygy";
|
|
categories = "Game;";
|
|
};
|
|
in
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "system-syzygy";
|
|
version = "1.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mdsteele";
|
|
repo = "syzygy";
|
|
rev = "5ba148fed7aae14bf35108d7303e4194e8ffe5e8";
|
|
sha256 = "07mzwx8ql33q865snnw4gm3dgf0mnm60lnq1f5fgas2yjy9g9vwa";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = [ SDL2 ];
|
|
|
|
cargoSha256 = "1jp9wnavq92w52ksj2q9fi3y58wq7ybfkx2kfbx2i2xv8d7y88ax";
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/syzygy/
|
|
cp -r ${src}/data/* $out/share/syzygy/
|
|
wrapProgram $out/bin/syzygy --set SYZYGY_DATA_DIR $out/share/syzygy
|
|
mkdir -p $out/share/applications
|
|
substituteAll ${desktopFile}/share/applications/system-syzygy.desktop $out/share/applications/system-syzygy.desktop
|
|
'';
|
|
|
|
|
|
meta = with lib; {
|
|
description = "A story and a puzzle game, where you solve a variety of puzzle";
|
|
homepage = "https://mdsteele.games/syzygy";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = [ maintainers.marius851000 ];
|
|
};
|
|
}
|