mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
enyo-doom: init at 1.05
This commit is contained in:
parent
e1dee4efcb
commit
8f7750b171
27
pkgs/games/enyo-doom/default.nix
Normal file
27
pkgs/games/enyo-doom/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ stdenv, fetchFromGitLab, cmake, qtbase }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "enyo-doom-${version}";
|
||||
version = "1.05";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "sdcofer70";
|
||||
repo = "enyo-doom";
|
||||
rev = version;
|
||||
sha256 = "1bmpgqwcp7640dbq1w8bkbk6mkn4nj5yxkvmjrl5wnlg0m1g0jr7";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -18937,6 +18937,8 @@ with pkgs;
|
|||
|
||||
endless-sky = callPackage ../games/endless-sky { };
|
||||
|
||||
enyo-doom = libsForQt5.callPackage ../games/enyo-doom { };
|
||||
|
||||
eternity = callPackage ../games/eternity-engine { };
|
||||
|
||||
extremetuxracer = callPackage ../games/extremetuxracer {
|
||||
|
|
Loading…
Reference in a new issue