about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2022-01-17T14·21+0300
committerclbot <clbot@tvl.fyi>2022-01-18T19·22+0000
commit4753e2f28662ffd922d0729cf0996f3a0e7f0dfa (patch)
tree499e380e172e51490dfdf02853576c58f3763c20
parente0d00b962125ea5d0f5858bce62536bef8b6f7b3 (diff)
chore(wpcarro/*): Remove some dead code r/3627
Found this while looking for non-3p uses of builtins.fetchGit. The
hailgun package is in the package set now, and the other thing was
unused (and it's also in the package set).

Change-Id: I6f519fd6014bbed90fc6cee695bed7afbcf55717
Reviewed-on: https://cl.tvl.fyi/c/depot/+/4984
Tested-by: BuildkiteCI
Autosubmit: tazjin <tazjin@tvl.su>
Reviewed-by: wpcarro <wpcarro@gmail.com>
-rw-r--r--users/wpcarro/assessments/tt/shell.nix18
-rw-r--r--users/wpcarro/ci/pipelines/post-receive.nix7
2 files changed, 7 insertions, 18 deletions
diff --git a/users/wpcarro/assessments/tt/shell.nix b/users/wpcarro/assessments/tt/shell.nix
index 88761e5399..bf8486ba1d 100644
--- a/users/wpcarro/assessments/tt/shell.nix
+++ b/users/wpcarro/assessments/tt/shell.nix
@@ -1,24 +1,18 @@
 { pkgs, depot, ... }:
 
-let
-  hailgun-src = builtins.fetchGit {
-    url = "https://bitbucket.org/echo_rm/hailgun.git";
-    rev = "9d5da7c902b2399e0fcf3d494ee04cf2bbfe7c9e";
-  };
-  hailgun = pkgs.haskellPackages.callCabal2nix "hailgun" hailgun-src {};
-in pkgs.mkShell {
+pkgs.mkShell {
   buildInputs = with pkgs; [
     (haskellPackages.ghcWithPackages (hpkgs: with hpkgs; [
-      hpkgs.servant-server
       hpkgs.aeson
+      hpkgs.cryptonite
+      hpkgs.envy
+      hpkgs.hailgun
       hpkgs.resource-pool
+      hpkgs.servant-server
       hpkgs.sqlite-simple
+      hpkgs.uuid
       hpkgs.wai-cors
       hpkgs.warp
-      hpkgs.cryptonite
-      hpkgs.uuid
-      hpkgs.envy
-      hailgun
     ]))
   ];
 }
diff --git a/users/wpcarro/ci/pipelines/post-receive.nix b/users/wpcarro/ci/pipelines/post-receive.nix
index 64401dee4a..b69ee28af3 100644
--- a/users/wpcarro/ci/pipelines/post-receive.nix
+++ b/users/wpcarro/ci/pipelines/post-receive.nix
@@ -1,14 +1,9 @@
 { pkgs, depot, ... }:
 
 let
-  inherit (builtins) fetchGit path toJSON;
+  inherit (builtins) path toJSON;
   inherit (depot.users.wpcarro.emacs) initEl runScript;
 
-  elispLintSrc = fetchGit {
-    url = "https://github.com/gonewest818/elisp-lint";
-    rev = "2b645266be8010a6a49c6d0ebf6a3ad5bd290ff4";
-  };
-
   pipeline.steps = [
     {
       key = "lint-secrets";