Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
40 lines
779 B
Nix
40 lines
779 B
Nix
{
|
|
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";
|
|
};
|
|
}
|