Skip to content

Commit

Permalink
jetbrains-runner: init at 3.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
js6pak committed Dec 23, 2024
1 parent d70bd19 commit 5c10c26
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions pkgs/by-name/je/jetbrains-runner/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
stdenv,
lib,
fetchFromGitHub,
cmake,
kdePackages,
nix-update-script,
}:
stdenv.mkDerivation rec {
pname = "jetbrains-runner";
version = "3.0.4";

src = fetchFromGitHub {
owner = "alex1701c";
repo = "JetBrainsRunner";
rev = version;
hash = "sha256-uLUtxKGXa8MjpdrT7X0EpRCWQTBYm8mt0NcyOLoGd5Y=";
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;
};
}

0 comments on commit 5c10c26

Please sign in to comment.