aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authorXe Iaso <me@christine.website>2022-04-22 23:36:25 +0000
committerXe Iaso <me@christine.website>2022-04-22 23:36:25 +0000
commit2e539512b713ffcbb8de15e7318abcea5a3d9249 (patch)
treeb4ee0cafb7d0b774d323adcc8b87e7abd75d1164 /shell.nix
parentf51752ed3caaaff598099045b808afa4b96812ba (diff)
downloadxesite-2e539512b713ffcbb8de15e7318abcea5a3d9249.tar.xz
xesite-2e539512b713ffcbb8de15e7318abcea5a3d9249.zip
convert to flakes
Signed-off-by: Xe Iaso <me@christine.website>
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix40
1 files changed, 0 insertions, 40 deletions
diff --git a/shell.nix b/shell.nix
deleted file mode 100644
index 59bbdc9..0000000
--- a/shell.nix
+++ /dev/null
@@ -1,40 +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;
- xepkgs = import sources.xepkgs { inherit pkgs; };
- rust = pkgs.callPackage ./nix/rust.nix { };
-in with pkgs;
-with xepkgs;
-mkShell {
- buildInputs = [
- # Rust
- rust
- cargo-watch
-
- # system dependencies
- openssl
- pkg-config
-
- # kubernetes deployment
- dhall
- dhall-yaml
-
- # dependency manager
- niv
-
- # tools
- ispell
- ];
-
- SITE_PREFIX = "devel.";
- CLACK_SET = "Ashlynn,Terry Davis,Dennis Ritchie";
- RUST_LOG = "debug";
- RUST_BACKTRACE = "1";
- RUST_SRC_PATH =
- "${pkgs.latest.rustChannels.nightly.rust-src}/lib/rustlib/src/rust/library";
- GITHUB_SHA = "devel";
-}