From d39506bd3c0abf62d156db4a57eba131c1b190ad Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Mon, 19 Oct 2020 15:27:32 -0400 Subject: [PATCH] fix build and debug ci --- .travis.yml | 1 + shell.nix | 1 + urbit-airlock.cabal | 1 + urbit-airlock.nix | 2 +- 4 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c50039f..8ceacef 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,6 +10,7 @@ before_script: - sudo chmod 600 /swapfile - sudo mkswap /swapfile - sudo swapon /swapfile + - free -h # get urbit - curl -O https://bootstrap.urbit.org/urbit-v0.10.8-linux64.tgz - tar xzf urbit-v0.10.8-linux64.tgz diff --git a/shell.nix b/shell.nix index 03b4a6b..e244acd 100644 --- a/shell.nix +++ b/shell.nix @@ -6,6 +6,7 @@ nixpkgs.mkShell { nixpkgs.ormolu.bin (nixpkgs.pkgs.haskell.packages.${compiler}.ghcWithPackages (hp: with hp; [ aeson base bytestring http-streams lens text uuid wai wai-extra wreq + io-streams ])) ]; } diff --git a/urbit-airlock.cabal b/urbit-airlock.cabal index 6bbadfd..6e00525 100644 --- a/urbit-airlock.cabal +++ b/urbit-airlock.cabal @@ -22,6 +22,7 @@ library aeson, bytestring, http-streams, + io-streams, lens, text, uuid, diff --git a/urbit-airlock.nix b/urbit-airlock.nix index 906fe69..276ba50 100644 --- a/urbit-airlock.nix +++ b/urbit-airlock.nix @@ -1,5 +1,5 @@ { mkDerivation, aeson, base, bytestring, lens, stdenv, text, wai -, wai-extra, wreq, uuid +, wai-extra, wreq, uuid, http-streams, io-streams }: mkDerivation { pname = "urbit-airlock";