about summary refs log tree commit diff
path: root/machines
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2016-08-29 01:20:59 +0200
committerProfpatsch <mail@profpatsch.de>2016-08-29 01:20:59 +0200
commit22c9b551865e768725d840d26c51c3e4d4cb7073 (patch)
tree379990019b1352830856faacd3068e871423297d /machines
parentbf79bd170b82eb55b79e0e7db459007493f2f3a8 (diff)
machines/katara: add fast-init
Diffstat (limited to 'machines')
-rw-r--r--machines/profpatsch/katara.nix1
-rw-r--r--machines/profpatsch/pkgs.nix11
2 files changed, 11 insertions, 1 deletions
diff --git a/machines/profpatsch/katara.nix b/machines/profpatsch/katara.nix
index 2d203e73..67b6883c 100644
--- a/machines/profpatsch/katara.nix
+++ b/machines/profpatsch/katara.nix
@@ -101,6 +101,7 @@ in {
         myPkgs.git-annex # version controlled binary file storage
         # mercurial             # the other version control system
         telnet                # tcp debugging
+        myPkgs.fast-init     # fast-init of haskell projects
       ];
       userPrograms = [
         abcde                # high-level cd-ripper with tag support
diff --git a/machines/profpatsch/pkgs.nix b/machines/profpatsch/pkgs.nix
index c3c09297..35f65a04 100644
--- a/machines/profpatsch/pkgs.nix
+++ b/machines/profpatsch/pkgs.nix
@@ -56,5 +56,14 @@ let
 
   vim = vim_configurable;
 
+  fast-init = pkgs.haskellPackages.callPackage (import "${(pkgs.fetchFromGitHub {
+    owner = "Profpatsch";
+    repo = "fast-init";
+    # TODO fix version
+    rev = "master";
+    sha256 = "13b626ggpfs2r4lmbg85gqrxi9a17njfkjn2400xrgm6635qq35w";
+  })}/overrides.nix") {};
+
+
 in
-{ inherit taffybar offlineimap sent mpv beets git-annex poezio vim; }
+{ inherit taffybar offlineimap sent mpv beets git-annex poezio vim fast-init; }