aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-07-18 00:10:56 +0000
committerFuwn <[email protected]>2021-07-18 00:10:56 +0000
commit31aed2ca19b4064179a1bbcdd881fc816ff397b9 (patch)
tree3e54f64cde6fc030d4781dda4d84314d812d24a4 /shell.nix
parentchore(git): nixfmt hook (diff)
downloadwhirl-31aed2ca19b4064179a1bbcdd881fc816ff397b9.tar.xz
whirl-31aed2ca19b4064179a1bbcdd881fc816ff397b9.zip
style(nix): nixfmt
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/shell.nix b/shell.nix
index 51c1342..f010179 100644
--- a/shell.nix
+++ b/shell.nix
@@ -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";
}