mirror of
https://github.com/msfjarvis/gitice
synced 2025-08-13 19:27:01 +05:30
feat: sync Nix config with dotfiles
This commit is contained in:
parent
598fb1304e
commit
7268dd54af
1 changed files with 3 additions and 2 deletions
|
@ -2,11 +2,12 @@ with import <nixpkgs> { overlays = [ (import <rust-overlay>) ]; };
|
||||||
mkShell {
|
mkShell {
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
(rust-bin.stable.latest.default.override {
|
(rust-bin.stable.latest.default.override {
|
||||||
extensions = [ "rust-src" "rustfmt-preview" ];
|
extensions =
|
||||||
|
[ "rust-src" "rustc-dev" "rustfmt-preview" "llvm-tools-preview" ];
|
||||||
targets =
|
targets =
|
||||||
pkgs.lib.optionals pkgs.stdenv.isDarwin [ "aarch64-apple-darwin" ]
|
pkgs.lib.optionals pkgs.stdenv.isDarwin [ "aarch64-apple-darwin" ]
|
||||||
++ pkgs.lib.optionals pkgs.stdenv.isLinux
|
++ pkgs.lib.optionals pkgs.stdenv.isLinux
|
||||||
[ "x86_64-unknown-linux-musl" ];
|
[ "x86_64-unknown-linux-gnu" ];
|
||||||
})
|
})
|
||||||
pkg-config
|
pkg-config
|
||||||
openssl
|
openssl
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue