nixpkgs/pkgs/games/enyo-launcher/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
609 B
Nix
Raw Normal View History

{ mkDerivation, lib, fetchFromGitLab, cmake, qtbase }:
2018-04-07 21:29:40 +00:00
2020-04-07 18:48:08 +00:00
mkDerivation rec {
pname = "enyo-launcher";
version = "2.0.5";
2018-04-07 21:29:40 +00:00
src = fetchFromGitLab {
owner = "sdcofer70";
repo = "enyo-launcher";
2018-04-07 21:29:40 +00:00
rev = version;
sha256 = "sha256-qdVP5QN2t0GK4VBWuFGrnRfgamQDZGRjwaAe6TIK604=";
2018-04-07 21:29:40 +00:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ qtbase ];
meta = {
homepage = "https://gitlab.com/sdcofer70/enyo-launcher";
2018-04-07 21:29:40 +00:00
description = "Frontend for Doom engines";
2021-01-15 04:31:39 +00:00
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.usrfriendly ];
2018-04-07 21:29:40 +00:00
};
}