Skip to content

Commit

Permalink
Add gh, jq and yq-go (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
yvan-sraka authored Aug 10, 2023
1 parent 864b7bd commit b6a3d61
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
12 changes: 9 additions & 3 deletions dynamic.nix
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,15 @@ pkgs.mkShell {
++ pkgs.lib.optional (withHLS && (compiler-not-in (pkgs.lib.optional (pkgs.stdenv.hostPlatform.isDarwin && pkgs.stdenv.hostPlatform.isAarch64) "ghc902") "Haskell Language Server")) (tool "haskell-language-server")
++ pkgs.lib.optional (withHlint && (compiler-not-in (["ghc961" "ghc962"] ++ pkgs.lib.optional (pkgs.stdenv.hostPlatform.isDarwin && pkgs.stdenv.hostPlatform.isAarch64) "ghc902") "HLint")) (tool "hlint")
++ pkgs.lib.optional withIOG
(with pkgs; [ cddl cbor-diag ]
# R for plutus
# postgresql for db-sync
(with pkgs; [
cddl
cbor-diag
#R_4_1_3 # for plutus
#postgresql # for db-sync
gh
jq
yq-go
]
++ map pkgs.lib.getDev (with pkgs; [ libblst libsodium-vrf secp256k1 R_4_1_3 postgresql icu ]))
;
}
5 changes: 4 additions & 1 deletion static.nix
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ pkgs.mkShell (rec {
echo -e "\tif you have the zlib, HsOpenSSL, or digest package in your dependency tree, please make sure to"
echo -e "\techo \"\$CABAL_PROJECT_LOCAL_TEMPLATE\" > cabal.project.local"
'';

# these are _target_ libs, e.g. ones we want to link the build
# product against. These are also the ones that showup in the
# PKG_CONFIG_PATH.
Expand All @@ -127,6 +127,9 @@ pkgs.mkShell (rec {
#R_4_1_3 # for plutus
postgresql # for db-sync
icu # for cardano-cli
gh
jq
yq-go
]);

# these are _native_ libs, we need to drive the compilation environment
Expand Down

0 comments on commit b6a3d61

Please sign in to comment.