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.
73 lines
1.6 KiB
Nix
73 lines
1.6 KiB
Nix
{ lib, stdenv
|
|
, rustPlatform
|
|
, fetchFromGitLab
|
|
, makeDesktopItem
|
|
, installShellFiles
|
|
, dejavu_fonts
|
|
, SDL2
|
|
, SDL2_ttf
|
|
}:
|
|
let
|
|
pname = "freenukum";
|
|
description = "Clone of the original Duke Nukum 1 Jump'n Run game";
|
|
|
|
desktopItem = makeDesktopItem {
|
|
desktopName = pname;
|
|
name = pname;
|
|
exec = pname;
|
|
icon = pname;
|
|
terminal = "false";
|
|
comment = description;
|
|
type = "Application";
|
|
categories = "Game;ArcadeGame;ActionGame";
|
|
genericName = pname;
|
|
fileValidation = false;
|
|
};
|
|
|
|
in
|
|
rustPlatform.buildRustPackage rec {
|
|
inherit pname;
|
|
version = "0.3.5";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "silwol";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0yqfzh0c8fqk92q9kmidy15dc5li0ak1gbn3v7p3xw5fkrzf99gy";
|
|
};
|
|
|
|
cargoSha256 = "1nss5zbdvxkr1mfb6vi6yjxcih99w836kvfr4r3n5dvzlkvga2vf";
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
];
|
|
|
|
buildInputs = [
|
|
SDL2
|
|
SDL2_ttf
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/graphics.rs \
|
|
--replace /usr $out
|
|
'';
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/fonts/truetype/dejavu
|
|
ln -sf \
|
|
${dejavu_fonts}/share/fonts/truetype/DejaVuSans.ttf \
|
|
$out/share/fonts/truetype/dejavu/DejaVuSans.ttf
|
|
mkdir -p $out/share/doc/freenukum
|
|
install -Dm644 README.md CHANGELOG.md COPYING $out/share/doc/freenukum/
|
|
installManPage doc/freenukum.6
|
|
install -Dm644 "${desktopItem}/share/applications/"* -t $out/share/applications/
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Clone of the original Duke Nukum 1 Jump'n Run game";
|
|
license = licenses.agpl3Plus;
|
|
maintainers = with maintainers; [ _0x4A6F ];
|
|
broken = stdenv.isDarwin;
|
|
};
|
|
}
|