Skip to content

Commit 9abf566

Browse files
authored
nix: refactor with flakes (haskell#1827)
* nix: refactor with flakes * Update github actions * Make pre-commit-hooks/flake-utils follows flake-utils * Update github actions * Update github actions * Support multi GHC versions * Update github actions * Copy postInstall from nixpkgs * Remove invalid ghc865 * Update README * Use nixpkgs-unstable * Update README * Add plugins automatically
1 parent 2d909af commit 9abf566

File tree

10 files changed

+362
-375
lines changed

10 files changed

+362
-375
lines changed

.github/workflows/nix.yml

+10-3
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ jobs:
2424
strategy:
2525
fail-fast: false
2626
matrix:
27-
ghc: ['default']
2827
os: [ubuntu-latest, macOS-latest]
2928

3029
steps:
@@ -33,13 +32,21 @@ jobs:
3332
with:
3433
submodules: true
3534
- if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
36-
uses: cachix/install-nix-action@v12
35+
uses: cachix/install-nix-action@v13
3736
with:
37+
install_url: https://nixos-nix-install-tests.cachix.org/serve/lb41az54kzk6j12p81br4bczary7m145/install
38+
install_options: '--tarball-url-prefix https://nixos-nix-install-tests.cachix.org/serve'
39+
extra_nix_config: |
40+
experimental-features = nix-command flakes
3841
nix_path: nixpkgs=channel:nixos-unstable
3942
- if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
4043
uses: cachix/cachix-action@v8
4144
with:
4245
name: haskell-language-server
4346
authToken: ${{ secrets.HLS_CACHIX_AUTH_TOKEN }}
4447
- if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
45-
run: nix-shell --argstr compiler ${{ matrix.ghc }} --run "cabal update && cabal build"
48+
run: nix build
49+
- if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
50+
run: nix develop --profile dev && cachix push haskell-language-server dev
51+
- if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
52+
run: nix path-info --json | jq -r '.[].path' | cachix push haskell-language-server

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,7 @@ test/testdata/**/hie.yaml
4141
# ghcide-bench
4242
*.identifierPosition
4343
/bench/example
44+
45+
# nix
46+
result
47+
result-doc

README.md

+20
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ background](https://neilmitchell.blogspot.com/2020/01/one-haskell-ide-to-rule-th
7878
- [Using Cabal](#using-cabal)
7979
- [Using Stack](#using-stack)
8080
- [Using Nix](#using-nix)
81+
- [Flakes support](#flakes-support)
8182
- [Introduction tutorial](#introduction-tutorial)
8283
- [Test your hacked HLS in your editor](#test-your-hacked-hls-in-your-editor)
8384
- [Adding support for a new editor](#adding-support-for-a-new-editor)
@@ -807,8 +808,27 @@ $ cabal update
807808
$ cabal build
808809
```
809810

811+
##### Flakes support
812+
813+
If you are using nix 2.4 style command (enabled by `experimental-features = nix-command`),
814+
you can use `nix develop` instead of `nix-shell` to enter the development shell. To enter the shell with specific GHC versions:
815+
816+
* `nix develop` or `nix develop .#haskell-language-server-dev` - default GHC version
817+
* `nix develop .#haskell-language-server-8104-dev` - GHC 8.10.4
818+
* `nix develop .#haskell-language-server-884-dev` - GHC 8.8.4
819+
* `nix develop .#haskell-language-server-901-dev` - GHC 9.0.1
820+
810821
If you are looking for a Nix expression to create haskell-language-server binaries, see https://github.com/haskell/haskell-language-server/issues/122
811822

823+
To create binaries:
824+
825+
* `nix build` or `nix build .#haskell-language-server` - default GHC version
826+
* `nix build .#haskell-language-server-8104` - GHC 8.10.4
827+
* `nix build .#haskell-language-server-884` - GHC 8.8.4
828+
* `nix build .#haskell-language-server-901` - GHC 9.0.1
829+
830+
GHC 8.6.5 is not supported here because `nixpkgs-unstable` no longer maintains the corresponding packages set.
831+
812832
#### Introduction tutorial
813833

814834
Pepeiborra [wrote an tutorial](https://github.com/pepeiborra/hls-tutorial) on writing a plugin in HLS.

default.nix

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# This file is the compt layer of flakes: https://github.com/edolstra/flake-compat
2+
# See flake.nix for details
3+
(import (
4+
let
5+
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
6+
in fetchTarball {
7+
url = "https://github.com/edolstra/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz";
8+
sha256 = lock.nodes.flake-compat.locked.narHash; }
9+
) {
10+
src = ./.;
11+
}).defaultNix

flake.lock

+101
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)