Skip to content
Closed
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
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,17 @@ jobs:
steps:
- uses: actions/checkout@v3

- uses: haskell-actions/setup@v2
- uses: haskell-actions/setup@v2.8.0
id: setup-haskell-cabal
name: Setup Haskell
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}
cabal-update: false

- name: Freeze
run: |
ls ~/.cabal/** -al
cabal update
cabal freeze

Expand Down
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
flake-utils.lib.eachDefaultSystem (system:
let
# What version of the GHC compiler to use
compiler-version = "ghc910";
compiler-version = clash-compiler.ghcVersion.${system};

pkgs = (import clash-compiler.inputs.nixpkgs {
inherit system;
Expand All @@ -26,7 +26,7 @@
{
# Expose the overlay which adds circuit-notation
# The base of the overlay is clash-pkgs
overlay = overlay;
overlays.default = overlay;

devShells.default = hs-pkgs.shellFor {
packages = p: [
Expand Down
Loading