Files
nixpkgs/pkgs/by-name/gu/gummi/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

56 lines
976 B
Nix

{
lib,
stdenv,
pkgs,
glib,
gtk3,
gtksourceview3,
gtkspell3,
poppler,
texlive,
pkg-config,
intltool,
autoreconfHook,
wrapGAppsHook3,
}:
stdenv.mkDerivation rec {
version = "0.8.3";
pname = "gummi";
src = pkgs.fetchFromGitHub {
owner = "alexandervdm";
repo = "gummi";
rev = version;
sha256 = "sha256-71n71KjLmICp4gznd27NlbyA3kayje3hYk/cwkOXEO0=";
};
nativeBuildInputs = [
pkg-config
intltool
autoreconfHook
wrapGAppsHook3
];
buildInputs = [
glib
gtksourceview3
gtk3
gtkspell3
poppler
texlive.bin.core # needed for synctex
];
postInstall = ''
install -Dpm644 COPYING $out/share/licenses/$name/COPYING
'';
meta = {
homepage = "https://gummi.app";
description = "Simple LaTex editor for GTK users";
mainProgram = "gummi";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ flokli ];
platforms = with lib.platforms; linux;
};
}