2021-01-25 08:26:54 +00:00
|
|
|
{ mkDerivation, lib, fetchFromGitLab, cmake, qtbase }:
|
2018-04-07 21:29:40 +00:00
|
|
|
|
2020-04-07 18:48:08 +00:00
|
|
|
mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "enyo-doom";
|
2020-10-22 16:01:24 +00:00
|
|
|
version = "2.0.2";
|
2018-04-07 21:29:40 +00:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "sdcofer70";
|
|
|
|
repo = "enyo-doom";
|
|
|
|
rev = version;
|
2020-10-22 16:01:24 +00:00
|
|
|
sha256 = "1s1vpwrrpb9c7r2b0k1j7dlsfasfzmi6prcwql4mxwixrl7f8ms1";
|
2018-04-07 21:29:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
buildInputs = [ qtbase ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "https://gitlab.com/sdcofer70/enyo-doom";
|
|
|
|
description = "Frontend for Doom engines";
|
2021-01-15 04:31:39 +00:00
|
|
|
license = lib.licenses.gpl3Plus;
|
|
|
|
platforms = lib.platforms.unix;
|
|
|
|
maintainers = [ lib.maintainers.tadfisher ];
|
2018-04-07 21:29:40 +00:00
|
|
|
};
|
|
|
|
}
|