mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01: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)
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ lib, python3Packages, fetchFromGitHub, gtk-layer-shell, gtk3, gobject-introspection, wrapGAppsHook3, wlr-randr }:
|
|
|
|
python3Packages.buildPythonPackage rec {
|
|
pname = "nwg-wrapper";
|
|
version = "0.1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nwg-piotr";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-GKDAdjO67aedCEFHKDukQ+oPMomTPwFE/CvJu112fus=";
|
|
};
|
|
|
|
nativeBuildInputs = [ gobject-introspection wrapGAppsHook3 ];
|
|
|
|
buildInputs = [ gtk3 gtk-layer-shell ];
|
|
|
|
propagatedBuildInputs = with python3Packages; [ i3ipc pygobject3 ];
|
|
|
|
# No tests
|
|
doCheck = false;
|
|
|
|
preFixup = ''
|
|
makeWrapperArgs+=(
|
|
"''${gappsWrapperArgs[@]}"
|
|
--prefix PATH : "${lib.makeBinPath [ wlr-randr ]}"
|
|
)
|
|
'';
|
|
|
|
pythonImportsCheck = [ "nwg_wrapper" ];
|
|
|
|
meta = with lib; {
|
|
description = "Wrapper to display a script output or a text file content on the desktop in sway or other wlroots-based compositors";
|
|
mainProgram = "nwg-wrapper";
|
|
homepage = "https://github.com/nwg-piotr/nwg-wrapper/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ artturin ];
|
|
};
|
|
}
|