mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-11 07:23:40 +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)
72 lines
1.2 KiB
Nix
72 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, meson
|
|
, ninja
|
|
, vala
|
|
, pkg-config
|
|
, wrapGAppsHook3
|
|
, desktop-file-utils
|
|
, discount
|
|
, glib
|
|
, gtk3
|
|
, gtksourceview4
|
|
, gtkspell3
|
|
, json-glib
|
|
, libarchive
|
|
, libgee
|
|
, libhandy
|
|
, libsecret
|
|
, libxml2
|
|
, link-grammar
|
|
, webkitgtk_4_1
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "thiefmd";
|
|
version = "0.2.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kmwallio";
|
|
repo = "ThiefMD";
|
|
rev = "v${version}";
|
|
hash = "sha256-noNfGFMeIyKhAgiovJDn91TLELAOQ4nD/5QlQfsKTII=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
vala
|
|
pkg-config
|
|
wrapGAppsHook3
|
|
desktop-file-utils
|
|
];
|
|
|
|
buildInputs = [
|
|
discount # libmarkdown
|
|
glib
|
|
gtk3
|
|
gtksourceview4
|
|
gtkspell3
|
|
json-glib
|
|
libarchive
|
|
libgee
|
|
libhandy
|
|
libsecret
|
|
libxml2
|
|
link-grammar
|
|
webkitgtk_4_1
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Markdown & Fountain editor that helps with organization and management";
|
|
homepage = "https://thiefmd.com";
|
|
downloadPage = "https://github.com/kmwallio/ThiefMD";
|
|
mainProgram = "com.github.kmwallio.thiefmd";
|
|
license = licenses.gpl3Only;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ wolfangaukang ];
|
|
};
|
|
}
|