initial commit
This commit is contained in:
commit
27b3274027
25 changed files with 1696 additions and 0 deletions
22
shell.nix
Normal file
22
shell.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ pkgs ? import <nixpkgs> {} }: let
|
||||
# rustfmt unstable
|
||||
fenix = import (pkgs.fetchFromGitHub {
|
||||
owner = "nix-community";
|
||||
repo = "fenix";
|
||||
rev = "3776d0e2a30184cc6a0ba20fb86dc6df5b41fccd";
|
||||
sha256 = "K8QDx8UgbvGdENuvPvcsCXcd8brd55OkRDFLBT7xUVY=";
|
||||
}) {};
|
||||
|
||||
rust-toolchain = fenix.complete.withComponents [
|
||||
"cargo"
|
||||
"rustc"
|
||||
"clippy"
|
||||
"rustfmt"
|
||||
];
|
||||
in pkgs.mkShell {
|
||||
buildInputs = with pkgs; [
|
||||
just
|
||||
hugo
|
||||
rust-toolchain
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue