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 | 31aed2ca19b4064179a1bbcdd881fc816ff397b9 (patch) | |
| tree | 3e54f64cde6fc030d4781dda4d84314d812d24a4 /shell.nix | |
| parent | chore(git): nixfmt hook (diff) | |
| download | whirl-31aed2ca19b4064179a1bbcdd881fc816ff397b9.tar.xz whirl-31aed2ca19b4064179a1bbcdd881fc816ff397b9.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"; } |