aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-06-03 15:17:19 +0000
committerFuwn <[email protected]>2024-06-03 15:17:19 +0000
commit378baec7cf1ffc08a3c27391c906adb2b98ce5fb (patch)
treecb19b08a612ea5a956f9e3eda983e774c24a2f39 /shell.nix
parentfix: bump rust and update accordingly (diff)
downloadarchived-whirl-378baec7cf1ffc08a3c27391c906adb2b98ce5fb.tar.xz
archived-whirl-378baec7cf1ffc08a3c27391c906adb2b98ce5fb.zip
chore: remove unused
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix35
1 files changed, 0 insertions, 35 deletions
diff --git a/shell.nix b/shell.nix
deleted file mode 100644
index f010179..0000000
--- a/shell.nix
+++ /dev/null
@@ -1,35 +0,0 @@
-let
- sources = import ./nix/sources.nix;
- 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;
- rust = pkgs.callPackage ./nix/rust.nix { };
-in pkgs.mkShell {
- buildInputs = with pkgs; [
- # Rust
- rust
- cargo-make
- diesel-cli
- cargo-watch
- cargo-udeps
- valgrind # Iai
-
- # System
- openssl
- pkg-config
-
- # Dhall
- dhall
- dhall-yaml
-
- # Dependecy manager
- niv
- ];
-
- DATABASE_URL = ".whirl/db.sqlite3";
- RUST_SRC_PATH =
- "${pkgs.latest.rustChannels.nightly.rust-src}/lib/rustlib/src/rust/library";
- RUST_BACKTRACE = "1";
-}