mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-30 08:44:31 +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)
54 lines
1.0 KiB
Nix
54 lines
1.0 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchgit
|
|
, autoreconfHook
|
|
, pkg-config
|
|
, wrapGAppsHook3
|
|
, gtk3
|
|
, imlib2
|
|
, libSM
|
|
, libstartup_notification
|
|
, libxml2
|
|
, openbox
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "obconf";
|
|
version = "unstable-2015-02-13";
|
|
|
|
src = fetchgit {
|
|
url = "git://git.openbox.org/dana/obconf";
|
|
rev = "63ec47c5e295ad4f09d1df6d92afb7e10c3fec39";
|
|
sha256 = "sha256-qwm66VA/ueRMFtSUcrmuObNkz+KYgWRnmR7TnQwpxiE=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
imlib2
|
|
libSM
|
|
libstartup_notification
|
|
libxml2
|
|
openbox
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace configure.ac --replace 2.0.4 ${version}
|
|
'';
|
|
|
|
meta = {
|
|
description = "GUI configuration tool for openbox";
|
|
homepage = "http://openbox.org/wiki/ObConf";
|
|
changelog = "http://openbox.org/wiki/ObConf:Changelog";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = [ lib.maintainers.sfrijters ];
|
|
platforms = lib.platforms.linux;
|
|
mainProgram = "obconf";
|
|
};
|
|
}
|