about summary refs log tree commit diff
path: root/machines
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2015-12-25 17:17:24 +0100
committerProfpatsch <mail@profpatsch.de>2015-12-25 17:17:24 +0100
commite7b5503c078666858ee29899d065e7aeebf65bb8 (patch)
treea33e88ed7305067a483d60916dbcb07516a5df5e /machines
parent78dd31d05eb3206b86ed2f99140c9917ab383220 (diff)
katara: wkthlmtopdf in other packages
Diffstat (limited to 'machines')
-rw-r--r--machines/profpatsch/katara.nix11
1 files changed, 8 insertions, 3 deletions
diff --git a/machines/profpatsch/katara.nix b/machines/profpatsch/katara.nix
index ed515a4d..72e88539 100644
--- a/machines/profpatsch/katara.nix
+++ b/machines/profpatsch/katara.nix
@@ -149,9 +149,9 @@ in {
       ];
     in systemPkgs ++ xPkgs ++ guiPkgs ++ userPrograms ++ mailPkgs ++ nixPkgs ++ tmpPkgs;
 
-    system.extraDependencies = lib.singleton (
+    system.extraDependencies = with pkgs; lib.singleton (
        # Haskell packages I want to keep around
-       pkgs.haskellPackages.ghcWithPackages (hpkgs: with hpkgs;
+       haskellPackages.ghcWithPackages (hpkgs: with hpkgs;
          [
            # frp
            frpnow
@@ -159,7 +159,12 @@ in {
            gtk
            frpnow-gtk
            frpnow-gloss
-         ]));
+         ]))
+       ++
+       # other packages that I use sometimes in a shell
+       [
+         wkhtmltopdf
+       ];
 
 
     ###########