summaryrefslogtreecommitdiffstats
path: root/pkgs/games/enyo-launcher
diff options
context:
space:
mode:
authorusrfriendly <arinlares@gmail.com>2022-08-27 19:57:13 -0700
committerusrfriendly <arinlares@gmail.com>2022-09-28 09:55:15 -0700
commitf0de0cf811e0e046f7c0f6ec2a5550e88d0426a3 (patch)
tree6c87daaea04c554746172e29f7c94ab7b997594e /pkgs/games/enyo-launcher
parent91d7e09de0fd575ee42905e97e8d62ca7762058d (diff)
enyo-launcher: 2.0.2 -> 2.0.5, renamed from enyo-doom
Diffstat (limited to 'pkgs/games/enyo-launcher')
-rw-r--r--pkgs/games/enyo-launcher/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/games/enyo-launcher/default.nix b/pkgs/games/enyo-launcher/default.nix
new file mode 100644
index 000000000000..170777cf5a35
--- /dev/null
+++ b/pkgs/games/enyo-launcher/default.nix
@@ -0,0 +1,25 @@
+{ mkDerivation, lib, fetchFromGitLab, cmake, qtbase }:
+
+mkDerivation rec {
+ pname = "enyo-launcher";
+ version = "2.0.5";
+
+ src = fetchFromGitLab {
+ owner = "sdcofer70";
+ repo = "enyo-launcher";
+ rev = version;
+ sha256 = "sha256-qdVP5QN2t0GK4VBWuFGrnRfgamQDZGRjwaAe6TIK604=";
+ };
+
+ nativeBuildInputs = [ cmake ];
+
+ buildInputs = [ qtbase ];
+
+ meta = {
+ homepage = "https://gitlab.com/sdcofer70/enyo-launcher";
+ description = "Frontend for Doom engines";
+ license = lib.licenses.gpl3Plus;
+ platforms = lib.platforms.unix;
+ maintainers = [ lib.maintainers.usrfriendly ];
+ };
+}