summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorTimo Kaufmann <timokau@zoho.com>2018-10-09 17:14:51 +0200
committerGitHub <noreply@github.com>2018-10-09 17:14:51 +0200
commit8b61090fccc62670f807e16cca44af4ec72b2e39 (patch)
treea1cc7973ffd6d8008a744dfd6267cea76782fc75 /pkgs
parentf7736141cd2689f14175c1c8322732e810521025 (diff)
parent2b93aed3ccfddc1516d5d8be35ff171f5fbcd181 (diff)
downloadnixlib-8b61090fccc62670f807e16cca44af4ec72b2e39.tar
nixlib-8b61090fccc62670f807e16cca44af4ec72b2e39.tar.gz
nixlib-8b61090fccc62670f807e16cca44af4ec72b2e39.tar.bz2
nixlib-8b61090fccc62670f807e16cca44af4ec72b2e39.tar.lz
nixlib-8b61090fccc62670f807e16cca44af4ec72b2e39.tar.xz
nixlib-8b61090fccc62670f807e16cca44af4ec72b2e39.tar.zst
nixlib-8b61090fccc62670f807e16cca44af4ec72b2e39.zip
Merge pull request #48010 from joncojonathan/gramps-addToMaintainers
gramps: add support for recommended packages, add joncojonathan to maintainers
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/misc/gramps/default.nix10
1 files changed, 9 insertions, 1 deletions
diff --git a/pkgs/applications/misc/gramps/default.nix b/pkgs/applications/misc/gramps/default.nix
index b12b84d106dc..413679afd219 100644
--- a/pkgs/applications/misc/gramps/default.nix
+++ b/pkgs/applications/misc/gramps/default.nix
@@ -1,7 +1,9 @@
 { stdenv, fetchFromGitHub, gtk3, pythonPackages, intltool, gnome3,
   pango, gobjectIntrospection, wrapGAppsHook,
 # Optional packages:
- enableOSM ? true, osm-gps-map
+ enableOSM ? true, osm-gps-map,
+ enableGraphviz ? true, graphviz,
+ enableGhostscript ? true, ghostscript
  }:
 
 let
@@ -14,6 +16,11 @@ in buildPythonApplication rec {
   buildInputs = [ intltool gtk3 gobjectIntrospection pango gnome3.gexiv2 ] 
     # Map support
     ++ stdenv.lib.optional enableOSM osm-gps-map
+    # Graphviz support
+    ++ stdenv.lib.optional enableGraphviz graphviz
+    # Ghostscript support
+    ++ stdenv.lib.optional enableGhostscript ghostscript
+    
   ;
 
   src = fetchFromGitHub {
@@ -53,5 +60,6 @@ in buildPythonApplication rec {
     description = "Genealogy software";
     homepage = https://gramps-project.org;
     license = licenses.gpl2;
+    maintainers = with maintainers; [ joncojonathan ];
   };
 }