depot/third_party/nixpkgs/pkgs/games/enyo-doom/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

25 lines
596 B
Nix

{ mkDerivation, lib, fetchFromGitLab, cmake, qtbase }:
mkDerivation rec {
pname = "enyo-doom";
version = "2.0.2";
src = fetchFromGitLab {
owner = "sdcofer70";
repo = "enyo-doom";
rev = version;
sha256 = "1s1vpwrrpb9c7r2b0k1j7dlsfasfzmi6prcwql4mxwixrl7f8ms1";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ qtbase ];
meta = {
homepage = "https://gitlab.com/sdcofer70/enyo-doom";
description = "Frontend for Doom engines";
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.tadfisher ];
};
}