doomrunner: 1.9.1 -> 1.9.2
This commit is contained in:
@@ -1,27 +1,31 @@
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
kdePackages,
|
||||
qt6,
|
||||
minizip,
|
||||
fetchFromGitHub,
|
||||
nix-update-script,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "doomrunner";
|
||||
version = "1.9.1";
|
||||
version = "1.9.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Youda008";
|
||||
repo = "DoomRunner";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-N5kj2Z3QW29kOw2khET6Z4E9nFBBjNTgKw2xbCQrWKY=";
|
||||
hash = "sha256-YkLW3og51e2sydWUiMDr2DOr1uHxzv4Z3rr/WRys5bY=";
|
||||
};
|
||||
|
||||
buildInputs = [ kdePackages.qtbase ];
|
||||
buildInputs = [
|
||||
minizip
|
||||
qt6.qtbase
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
kdePackages.qmake
|
||||
kdePackages.wrapQtAppsHook
|
||||
qt6.qmake
|
||||
qt6.wrapQtAppsHook
|
||||
];
|
||||
|
||||
makeFlags = [
|
||||
@@ -46,12 +50,12 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
meta = {
|
||||
description = "Preset-oriented graphical launcher of various ported Doom engines";
|
||||
mainProgram = "DoomRunner";
|
||||
homepage = "https://github.com/Youda008/DoomRunner";
|
||||
changelog = "https://github.com/Youda008/DoomRunner/blob/${finalAttrs.src.rev}/changelog.txt";
|
||||
description = "Preset-oriented graphical launcher of various ported Doom engines";
|
||||
homepage = "https://github.com/Youda008/DoomRunner";
|
||||
license = lib.licenses.gpl3Only;
|
||||
platforms = lib.platforms.all;
|
||||
mainProgram = "DoomRunner";
|
||||
maintainers = with lib.maintainers; [ keenanweaver ];
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user