Commit 14031259 authored by Astro's avatar Astro Committed by Emery Hemingway
Browse files

dethrace: init at 0.8.0

parent 0151acc4
Loading
Loading
Loading
Loading
+40 −0
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  fetchFromGitHub,
  cmake,
  SDL2,
  perl,
}:

stdenv.mkDerivation rec {
  pname = "dethrace";
  version = "0.8.0";

  src = fetchFromGitHub {
    owner = "dethrace-labs";
    repo = pname;
    rev = "refs/tags/v${version}";
    hash = "sha256-Bt2wwF5cquXZwFpFyJ0TDmbFdTHbboQ93W/DvP9bsMo=";
    fetchSubmodules = true;
  };

  buildInputs = [ SDL2 ];
  nativeBuildInputs = [
    cmake
    perl
  ];

  installPhase = ''
    install -Dm755 dethrace $out/bin/dethrace
  '';

  meta = with lib; {
    homepage = "https://twitter.com/dethrace_labs";
    description = "Reverse engineering the 1997 game Carmageddon";
    license = licenses.gpl3;
    platforms = platforms.linux;
    maintainers = with maintainers; [ astro ];
    mainProgram = "dethrace";
  };
}