diff options
-rw-r--r-- | users/wpcarro/assessments/tt/shell.nix | 18 | ||||
-rw-r--r-- | users/wpcarro/ci/pipelines/post-receive.nix | 7 |
2 files changed, 7 insertions, 18 deletions
diff --git a/users/wpcarro/assessments/tt/shell.nix b/users/wpcarro/assessments/tt/shell.nix index 88761e539920..bf8486ba1d92 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 64401dee4ace..b69ee28af3e6 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"; |