diff options
| author | Fuwn <[email protected]> | 2021-07-18 00:10:56 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-07-18 00:10:56 +0000 |
| commit | d1b13edc14e271b29598e41c00b0dea6eafd90e2 (patch) | |
| tree | d76a088f2eba90e0bf92a7651b492a6c6ee422bd /shell.nix | |
| parent | chore(git): nixfmt hook (diff) | |
| download | whirl-d1b13edc14e271b29598e41c00b0dea6eafd90e2.tar.xz whirl-d1b13edc14e271b29598e41c00b0dea6eafd90e2.zip | |
style(nix): nixfmt
Diffstat (limited to 'shell.nix')
| -rw-r--r-- | shell.nix | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,6 +1,7 @@ let sources = import ./nix/sources.nix; - pkgs = import sources.nixpkgs { overlays = [ (import sources.nixpkgs-mozilla) ]; }; + pkgs = + import sources.nixpkgs { overlays = [ (import sources.nixpkgs-mozilla) ]; }; dhallpkgs = import sources.easy-dhall-nix { inherit pkgs; }; dhall-yaml = dhallpkgs.dhall-yaml-simple; dhall = dhallpkgs.dhall-simple; @@ -28,6 +29,7 @@ in pkgs.mkShell { ]; DATABASE_URL = ".whirl/db.sqlite3"; - RUST_SRC_PATH = "${pkgs.latest.rustChannels.nightly.rust-src}/lib/rustlib/src/rust/library"; + RUST_SRC_PATH = + "${pkgs.latest.rustChannels.nightly.rust-src}/lib/rustlib/src/rust/library"; RUST_BACKTRACE = "1"; } |