Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions dynamic.nix
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ pkgs.mkShell {
jq
libblst
libsodium-vrf
lmdb # for cardano-lmdb/ouroboros-consensus
secp256k1
yq-go
]
Expand Down
6 changes: 6 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@
'';
postFixup = "";
});
static-lmdb = final.lmdb.overrideDerivation (old: {
# Don't attempt the .so if static, as it would fail.
postPatch = ''
sed 's/^ILIBS\>.*/ILIBS = liblmdb.a/' -i Makefile
'';
});
});

cddl-tools = (final: prev: {
Expand Down
1 change: 1 addition & 0 deletions static.nix
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ pkgs.mkShell (rec {
static-libblst
static-libsodium-vrf
static-secp256k1
static-lmdb # for cardano-lmdb/ouroboros-consensus
icu # for cardano-cli
gh
jq
Expand Down
2 changes: 1 addition & 1 deletion tool-map.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ let
f76d08be13e9a61a377a85e2fb63f4c5435d40f8feb3e12eb05905edb8cdea89
26021a13b401500c8eb2761ca95c61f2d625bfef951b939a8124ed12ecf07329
7541f32a4ccca4f97aea3b22f5e593ba2c0267546016b992dfadcd2fe944e55d
--sha256: sha256-+hzciiQqWb5oOzQ2JZ2lzJGfGuwA3ZigeWgAQ8Dz+kk=
--sha256: sha256-YVcHIBJ8qo2fCBkuRM+vCVVoEEzGcFqNPMukSCBbcJw=

if impl(ghc < 9.13)
active-repositories: hackage.haskell.org
Expand Down
Loading