nixpkgs/pkgs/games/enyo-doom/default.nix

28 lines
654 B
Nix
Raw Normal View History

2018-04-07 21:29:40 +00:00
{ stdenv, fetchFromGitLab, cmake, qtbase }:
stdenv.mkDerivation rec {
name = "enyo-doom-${version}";
version = "1.06.9";
2018-04-07 21:29:40 +00:00
src = fetchFromGitLab {
owner = "sdcofer70";
repo = "enyo-doom";
rev = version;
sha256 = "0vx5zy47cqrqdgyx31wg56ivva0qqiyww8bp1x32ax99danymjyf";
2018-04-07 21:29:40 +00:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ qtbase ];
enableParallelBuilding = true;
meta = {
homepage = "https://gitlab.com/sdcofer70/enyo-doom";
description = "Frontend for Doom engines";
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.tadfisher ];
};
}