mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 05:23:16 +00:00
eb04659fc2
This was achieved using the following command: sd 'wrapGAppsHook\b' wrapGAppsHook3 (rg -l 'wrapGAppsHook\b') And then manually reverted the following changes: - alias in top-level.nix - function name in wrap-gapps-hook.sh - comment in postFixup of at-spi2-core - comment in gtk4 - comment in preFixup of 1password-gui/linux.nix - comment in postFixup of qgis/unwrapped-ltr.nix and qgis/unwrapped.nix - comment in postFixup of telegram-desktop - comment in postFixup of fwupd - buildCommand of mongodb-compass - postFixup of xflux-gui - comment in a patch in kdePackages.kde-gtk-config and plasma5Packages.kde-gtk-config - description of programs.sway.wrapperFeatures.gtk NixOS option (manual rebuild)
33 lines
966 B
Nix
33 lines
966 B
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook
|
|
, gtk2, hicolor-icon-theme, intltool, pkg-config
|
|
, which, wrapGAppsHook3, xdotool, libappindicator-gtk2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "parcellite";
|
|
version = "1.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rickyrockrat";
|
|
repo = "parcellite";
|
|
rev = version;
|
|
sha256 = "19q4x6x984s6gxk1wpzaxawgvly5vnihivrhmja2kcxhzqrnfhiy";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook intltool pkg-config wrapGAppsHook3 ];
|
|
buildInputs = [ gtk2 hicolor-icon-theme libappindicator-gtk2 ];
|
|
NIX_LDFLAGS = "-lgio-2.0";
|
|
|
|
preFixup = ''
|
|
# Need which and xdotool on path to fix auto-pasting.
|
|
gappsWrapperArgs+=(--prefix PATH : "${which}/bin:${xdotool}/bin")
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Lightweight GTK clipboard manager";
|
|
homepage = "https://github.com/rickyrockrat/parcellite";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
mainProgram = "parcellite";
|
|
};
|
|
}
|