haskell-language-server/default.nix
Potato Hatsue 6606a06ba1
Use cabal-install if nix is failing in CI (#1859)
* Use cabal-install if nix is failing in CI

* Add default.nix

* Split nix job

* Fix syntax error

* Reorder
2021-05-24 07:42:00 +02:00

12 lines
404 B
Nix

# This file is the compt layer of flakes: https://github.com/edolstra/flake-compat
# See flake.nix for details
(import (
let
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
in fetchTarball {
url = "https://github.com/edolstra/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz";
sha256 = lock.nodes.flake-compat.locked.narHash; }
) {
src = ./.;
}).defaultNix