about summary refs log tree commit diff
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2021-02-05 13:06:54 +0100
committerProfpatsch <mail@profpatsch.de>2021-02-05 13:08:40 +0100
commitfe7bbebd22c61add4592066900f3a4b77279621b (patch)
treedc8232636434f578f410263b77f12f9cc0193535
parentbeb276e1a6464e250aa4d3f188e711ff10eab51f (diff)
pkgs/openlab: remove gitit
We originally needed it here to deploy it on the machine, but it’s set
up manually via the gitit repo default.nix for the time being.
-rw-r--r--pkgs/openlab/default.nix1
-rw-r--r--pkgs/openlab/gitit/default.nix18
2 files changed, 0 insertions, 19 deletions
diff --git a/pkgs/openlab/default.nix b/pkgs/openlab/default.nix
index 131a3eca..aa21c77b 100644
--- a/pkgs/openlab/default.nix
+++ b/pkgs/openlab/default.nix
@@ -1,7 +1,6 @@
 { callPackage, haskell }:
 
 {
-  gitit = callPackage ./gitit { hlib = haskell.lib; };
   # TODO: fix haskell code
   # stackenblocken = callPackage ./stackenblocken {};
 }
diff --git a/pkgs/openlab/gitit/default.nix b/pkgs/openlab/gitit/default.nix
deleted file mode 100644
index dca2822a..00000000
--- a/pkgs/openlab/gitit/default.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{ hlib, haskellPackages, fetchFromGitHub }:
-
-let hp = haskellPackages.override {
-  overrides = (self: super: {
-    gitit = (hlib.overrideCabal super.gitit (drv: rec {
-      src = fetchFromGitHub {
-        owner = "openlab-aux";
-        repo = "gitit";
-        rev = "3da7c841f9382d0c62242a1b718511acec97e9f7";
-        sha256 = "0qhkbvm4ixav4nln3m9845w9m3gzfq5xh4nxp2c9qj4w9p79if7z";
-      };
-      broken = true;
-      platforms = [ "x86_64-linux" ];
-      hydraPlatforms = platforms;
-    }));
-  });
-};
-in hp.gitit