projects
/
lemmy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cd3c076
)
add more tooling to the Nix flake
author
self
<self@awful.systems>
Tue, 25 Jul 2023 12:15:46 +0000
(
05:15
-0700)
committer
self
<self@awful.systems>
Mon, 21 Aug 2023 14:41:18 +0000
(07:41 -0700)
flake.nix
patch
|
blob
|
history
diff --git
a/flake.nix
b/flake.nix
index 4a3094fbea3e06deace8a322ae880cd77ec49c36..81cb3dd10572694dd23593960ca9b01cd887e751 100644
(file)
--- a/
flake.nix
+++ b/
flake.nix
@@
-20,7
+20,16
@@
default = self.packages.x86_64-linux.lemmy-server;
};
- devShells.default =
- pkgs.mkShell { buildInputs = [ pkgs.rustc pkgs.cargo ]; };
+ devShells.default = pkgs.mkShell {
+ buildInputs = [
+ pkgs.rustc
+ pkgs.cargo
+ pkgs.clippy
+ pkgs.diesel-cli
+ pkgs.pkg-config
+ pkgs.openssl
+ pkgs.postgresql
+ ];
+ };
});
}