File tree Expand file tree Collapse file tree 6 files changed +103
-88
lines changed Expand file tree Collapse file tree 6 files changed +103
-88
lines changed Original file line number Diff line number Diff line change 1818
1919 pkgs . protobuf
2020 pkgs . haskellPackages . haskell-language-server
21- pkgs . swiPrologWithGui
22- ] ++ config . settings . shell . tools ;
21+ ]
22+ ++ ( pkgs . lib . optionals pkgs . stdenv . isLinux [ pkgs . swiPrologWithGui ] )
23+ ++ config . settings . shell . tools ;
2324
2425 shellHook = config . settings . shell . hook ;
2526 inputsFrom = [ inputs' . proto-nix . devShells . dev-proto-nix ] ;
Original file line number Diff line number Diff line change 4040 # FIXME: contentAddressed = true;
4141 reinstallableLibGhc = false ; # See https://github.com/input-output-hk/haskell.nix/issues/1939
4242 packages = {
43- cardano-crypto-class . components . library . pkgconfig = pkgs . lib . mkForce [ [ pkgs . libsodium-vrf pkgs . secp256k1 ] ] ;
43+ cardano-crypto-class . components . library . pkgconfig = pkgs . lib . mkForce [ [ pkgs . libsodium-vrf pkgs . secp256k1 pkgs . libblst ] ] ;
4444 cardano-crypto-praos . components . library . pkgconfig = pkgs . lib . mkForce [ [ pkgs . libsodium-vrf ] ] ;
4545 } ;
4646 } ;
Original file line number Diff line number Diff line change 22 imports = [
33 inputs . pre-commit-hooks . flakeModule # Adds perSystem.pre-commit options
44 ] ;
5- perSystem = { pkgs , ... } :
5+ perSystem = { pkgsForRust , ... } :
66 let
7- inherit ( pkgs . rust-bin . stable . latest ) rustfmt ;
8- inherit ( pkgs ) deno ;
7+ inherit ( pkgsForRust . rust-bin . stable . latest ) rustfmt ;
8+ inherit ( pkgsForRust ) deno ;
99 in
1010 {
1111 pre-commit . settings . hooks = {
You can’t perform that action at this time.
0 commit comments