lib.packagesFromDirectoryRecursive: Improved documentation (#359898)
[NixPkgs.git] / pkgs / by-name / gu / gummi / package.nix
blob857db4fd95bfdfd6b4defbb83f3d628b24f5cb22
1 { lib, stdenv, pkgs
2 , glib, gtk3, gtksourceview3, gtkspell3, poppler, texlive
3 , pkg-config, intltool, autoreconfHook, wrapGAppsHook3
4 }:
6 stdenv.mkDerivation rec {
7   version = "0.8.3";
8   pname = "gummi";
10   src = pkgs.fetchFromGitHub {
11     owner = "alexandervdm";
12     repo = "gummi";
13     rev = version;
14     sha256 = "sha256-71n71KjLmICp4gznd27NlbyA3kayje3hYk/cwkOXEO0=";
15   };
17   nativeBuildInputs = [
18     pkg-config intltool autoreconfHook wrapGAppsHook3
19   ];
20   buildInputs = [
21     glib gtksourceview3 gtk3 gtkspell3 poppler
22     texlive.bin.core # needed for synctex
23   ];
25   postInstall = ''
26     install -Dpm644 COPYING $out/share/licenses/$name/COPYING
27   '';
29   meta = {
30     homepage = "https://gummi.app";
31     description = "Simple LaTex editor for GTK users";
32     mainProgram = "gummi";
33     license = lib.licenses.mit;
34     maintainers = with lib.maintainers; [ flokli ];
35     platforms = with lib.platforms; linux;
36   };