Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
39 lines
762 B
Nix
39 lines
762 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
boost,
|
|
cmake,
|
|
git,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "openttd-grfcodec";
|
|
version = "unstable-2021-03-10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "OpenTTD";
|
|
repo = "grfcodec";
|
|
rev = "045774dee7cab1a618a3e0d9b39bff78a12b6efa";
|
|
sha256 = "0b4xnnkqc01d3r834lhkq744ymar6c8iyxk51wc4c7hvz0vp9vmy";
|
|
};
|
|
|
|
buildInputs = [ boost ];
|
|
nativeBuildInputs = [
|
|
cmake
|
|
git
|
|
];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp -a grfcodec grfid grfstrip nforenum $out/bin/
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Low-level (dis)assembler and linter for OpenTTD GRF files";
|
|
homepage = "http://openttd.org/";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ ToxicFrog ];
|
|
};
|
|
}
|