mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-13 07:34:21 +00:00
![Jan Tojnar](/assets/img/avatar_default.png)
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)
43 lines
1.0 KiB
Nix
43 lines
1.0 KiB
Nix
{ stdenv, lib, fetchgit, pkg-config, meson, ninja, wrapGAppsHook3
|
|
, enchant, gtkmm3, libchamplain, libgcrypt, shared-mime-info }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lifeograph";
|
|
version = "2.0.3";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.launchpad.net/lifeograph";
|
|
rev = "v${version}";
|
|
hash = "sha256-RotbTdTtpwXmo+UKOyp93IAC6CCstv++KtnX2doN+nM=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
shared-mime-info # for update-mime-database
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
libgcrypt
|
|
enchant
|
|
gtkmm3
|
|
libchamplain
|
|
];
|
|
|
|
postInstall = ''
|
|
substituteInPlace $out/share/applications/net.sourceforge.Lifeograph.desktop \
|
|
--replace "Exec=" "Exec=$out/bin/"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://lifeograph.sourceforge.net/wiki/Main_Page";
|
|
description = "Lifeograph is an off-line and private journal and note taking application";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ wolfangaukang ];
|
|
mainProgram = "lifeograph";
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|