depot/third_party/nixpkgs/pkgs/games/doom-ports/enyo-launcher/default.nix
Default email 94427deb9d Project import generated by Copybara.
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
2023-05-24 16:37:59 +03:00

25 lines
609 B
Nix

{ 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 ];
};
}