Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
54 lines
1.1 KiB
Nix
54 lines
1.1 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
kdePackages,
|
|
nix-update-script,
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "jetbrains-runner";
|
|
version = "3.0.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "alex1701c";
|
|
repo = "JetBrainsRunner";
|
|
tag = version;
|
|
hash = "sha256-Jw86JFaaJ5kGB4dnOInAcdGsLmE4XO7O8/aBaV1zcNU=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
buildInputs = with kdePackages; [
|
|
ki18n
|
|
kservice
|
|
krunner
|
|
ktextwidgets
|
|
kio
|
|
kcmutils
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
kdePackages.extra-cmake-modules
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DBUILD_TESTING=OFF"
|
|
"-DBUILD_WITH_QT6=ON"
|
|
"-DQT_MAJOR_VERSION=6"
|
|
];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "Krunner Plugin which allows you to open your recent JetBrains projects";
|
|
homepage = "https://github.com/alex1701c/JetBrainsRunner";
|
|
sourceProvenance = with lib.sourceTypes; [ fromSource ];
|
|
license = lib.licenses.lgpl3Only;
|
|
maintainers = with lib.maintainers; [ js6pak ];
|
|
inherit (kdePackages.krunner.meta) platforms;
|
|
};
|
|
}
|