rofi-calc: 2.3.1 -> 2.3.2 (#416452)

This commit is contained in:
Wolfgang Walther
2025-06-26 13:12:56 +00:00
committed by GitHub
2 changed files with 14 additions and 33 deletions
@@ -1,25 +0,0 @@
From 0eaef67b683683fb423fcb2d5096b3cdf9a4a9cd Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Maciej=20Kr=C3=BCger?= <mkg20001@gmail.com>
Date: Sun, 22 Mar 2020 12:26:10 +0100
Subject: [PATCH] Patch plugindir to output
---
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index 50edb74..639ee86 100644
--- a/configure.ac
+++ b/configure.ac
@@ -50,7 +50,7 @@ PKG_CHECK_MODULES([glib], [glib-2.0 >= 2.40 gio-unix-2.0 gmodule-2.0 ])
PKG_CHECK_MODULES([cairo], [cairo])
PKG_CHECK_MODULES([rofi], [rofi >= 1.5.4])
-[rofi_PLUGIN_INSTALL_DIR]="`$PKG_CONFIG --variable=pluginsdir rofi`"
+[rofi_PLUGIN_INSTALL_DIR]="`echo $out/lib/rofi`"
AC_SUBST([rofi_PLUGIN_INSTALL_DIR])
LT_INIT([disable-static])
--
2.25.1
+14 -8
View File
@@ -2,7 +2,6 @@
lib,
stdenv,
fetchFromGitHub,
autoreconfHook,
pkg-config,
rofi-unwrapped,
libqalculate,
@@ -10,24 +9,27 @@
cairo,
gobject-introspection,
wrapGAppsHook3,
meson,
ninja,
}:
stdenv.mkDerivation rec {
pname = "rofi-calc";
version = "2.3.1";
version = "2.3.2";
src = fetchFromGitHub {
owner = "svenstaro";
repo = "rofi-calc";
rev = "v${version}";
sha256 = "sha256-1Sdi7SN5ZhBJB5qyqDZQC5QcBz0Fydb1az8yDSuTlnE=";
sha256 = "sha256-ASZtIcUxaOYYAlINa77R9WgqonHtAR7Fdm9wDrbyRy0=";
};
nativeBuildInputs = [
autoreconfHook
pkg-config
gobject-introspection
wrapGAppsHook3
meson
ninja
];
buildInputs = [
@@ -37,12 +39,16 @@ stdenv.mkDerivation rec {
cairo
];
patches = [
./0001-Patch-plugindir-to-output.patch
];
mesonBuildType = "release";
postPatch = ''
sed "s|qalc_binary = \"qalc\"|qalc_binary = \"${libqalculate}/bin/qalc\"|" -i src/calc.c
substituteInPlace src/calc.c --replace-fail \
"qalc_binary = \"qalc\"" \
"qalc_binary = \"${libqalculate}/bin/qalc\""
substituteInPlace src/meson.build --replace-fail \
"rofi.get_variable('pluginsdir')" \
"'$out/lib/rofi'"
'';
meta = with lib; {