nixpkgs/pkgs/games/doom-ports/enyo-launcher/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

27 lines
644 B
Nix

{ mkDerivation, lib, fetchFromGitLab, cmake, qtbase }:
mkDerivation rec {
pname = "enyo-launcher";
version = "2.0.6";
src = fetchFromGitLab {
owner = "sdcofer70";
repo = "enyo-launcher";
rev = version;
sha256 = "sha256-k6Stc1tQOcdS//j+bFUNfnOUlwuhIPKxf9DHU+ng164=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ qtbase ];
meta = {
homepage = "https://gitlab.com/sdcofer70/enyo-launcher";
description = "Frontend for Doom engines";
mainProgram = "enyo-launcher";
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.usrfriendly ];
};
}