anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / games / openttd / grfcodec.nix
blobaf4e31537463786154fe676d8aaefbfd8b65c64b
1 { stdenv, lib, fetchFromGitHub, boost, cmake, git }:
3 stdenv.mkDerivation rec {
4   pname = "openttd-grfcodec";
5   version = "unstable-2021-03-10";
7   src = fetchFromGitHub {
8     owner = "OpenTTD";
9     repo = "grfcodec";
10     rev = "045774dee7cab1a618a3e0d9b39bff78a12b6efa";
11     sha256 = "0b4xnnkqc01d3r834lhkq744ymar6c8iyxk51wc4c7hvz0vp9vmy";
12   };
14   buildInputs = [boost];
15   nativeBuildInputs = [cmake git];
17   installPhase = ''
18     mkdir -p $out/bin
19     cp -a grfcodec grfid grfstrip nforenum $out/bin/
20   '';
22   meta = with lib; {
23     description = "Low-level (dis)assembler and linter for OpenTTD GRF files";
24     homepage    = "http://openttd.org/";
25     license     = licenses.gpl2Plus;
26     maintainers = with maintainers; [ ToxicFrog ];
27   };