Compare commits

..

No commits in common. "f5f6c9ced90d6f53ccdaa4143ab56d7135d0c1a3" and "6865af361dc944116f747a683a900be788e0d8a5" have entirely different histories.

3 changed files with 34 additions and 7 deletions

View File

@ -17,14 +17,46 @@ library
, Data.Versioned , Data.Versioned
-- other-extensions: -- other-extensions:
build-depends: base >=4.10 && <4.11 build-depends: base >=4.10 && <4.11
, aeson
, asn1-data
, asn1-types
, bytestring
, classy-prelude , classy-prelude
, cryptonite
, dhall , dhall
, directory
, foreign-store , foreign-store
, generic-lens , generic-lens
, http-api-data
, http-media
, jose
, lens , lens
, lucid
, memory
, monad-logger
, mtl , mtl
, pandoc
, pandoc-types
, pem
, process
, resource-pool
, selda
, selda-postgresql
, servant
, servant-auth
, servant-auth-server
, servant-docs
, servant-lucid
, servant-multipart
, servant-server
, text , text
, transformers , transformers
, wai
, warp
, x509
, x509-store
, xml-conduit
, xml-hamlet
hs-source-dirs: src hs-source-dirs: src
default-extensions: DeriveGeneric default-extensions: DeriveGeneric
, NoImplicitPrelude , NoImplicitPrelude

View File

@ -5,8 +5,4 @@
common = ./common; common = ./common;
backend = ./backend; backend = ./backend;
}; };
tools = with haskellPackages; [
ghcid
hasktags
];
} }

View File

@ -8,7 +8,6 @@ in
{ packages { packages
, overrides ? _ : _ : {} , overrides ? _ : _ : {}
, tools ? []
}: }:
let let
@ -27,8 +26,8 @@ let
name = "${n}"; name = "${n}";
value = nixpkgs.buildEnv { value = nixpkgs.buildEnv {
name = "${n}"; name = "${n}";
paths = tools; paths = [];
buildInputs = tools ++ [deps]; buildInputs = [deps];
}; };
}; };
shells = nixpkgs.lib.listToAttrs (mapAttrsToList mkShell packages'); shells = nixpkgs.lib.listToAttrs (mapAttrsToList mkShell packages');