mirror of
https://github.com/simplex-chat/haskell.nix.git
synced 2026-06-03 09:17:32 +00:00
8 lines
334 B
Nix
8 lines
334 B
Nix
# shell.nix
|
|
let
|
|
haskellNix = import (builtins.fetchTarball "https://github.com/input-output-hk/haskell.nix/archive/master.tar.gz") {};
|
|
nixpkgs = import haskellNix.sources.nixpkgs haskellNix.nixpkgsArgs;
|
|
haskell = nixpkgs.haskell-nix;
|
|
in
|
|
haskell.haskellPackages.ghcWithPackages (ps: with ps;
|
|
[ lens conduit conduit-extra ]) |