Skip to content
Snippets Groups Projects
Commit 01d99e1a authored by Sven Tennie's avatar Sven Tennie :smiley_cat:
Browse files

Some shell.nix

parent da4182a7
No related branches found
No related tags found
No related merge requests found
Pipeline #84688 failed
let
pkgs-unstable = import (builtins.fetchTarball {
# Descriptive name to make the store path easier to identify
name = "nixos-unstable-2023-08-24";
# Commit hash for nixos-unstable as of 2018-09-12
url = "https://github.com/nixos/nixpkgs/archive/aa8aa7e2ea35ce655297e8322dc82bf77a31d04b.tar.gz";
# Hash obtained using `nix-prefetch-url --unpack <url>`
sha256 = "0bbv3y86kfpn02zh5vvdbkmnqyzagzbc1gzpvvlb6qbvgg639bf9";
}) {};
pkgs = import <nixpkgs> {};
hls =pkgs-unstable.haskell-language-server.override { supportedGhcVersions = [ "96" ]; };
in
pkgs.mkShell {
packages = [ pkgs.haskell.compiler.ghc96 pkgs.cabal-install hls ];
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment