fix: remove redundant rustc from buildInputs (#1296)
Move `ructc` & `cargo` to devInput, for the devShell.
This commit is contained in:
parent
25d79fd429
commit
54f7143249
1 changed files with 5 additions and 6 deletions
|
|
@ -30,7 +30,7 @@ flake-utils.lib.eachSystem [
|
||||||
|
|
||||||
name = "zellij";
|
name = "zellij";
|
||||||
pname = name;
|
pname = name;
|
||||||
root = toString ../.;
|
root = self;
|
||||||
|
|
||||||
ignoreSource = [".git" "target" "example"];
|
ignoreSource = [".git" "target" "example"];
|
||||||
|
|
||||||
|
|
@ -47,21 +47,20 @@ flake-utils.lib.eachSystem [
|
||||||
rustc = rustToolchainToml;
|
rustc = rustToolchainToml;
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
rustToolchainToml
|
|
||||||
|
|
||||||
# in order to run tests
|
# in order to run tests
|
||||||
pkgs.openssl
|
pkgs.openssl
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
rustToolchainToml
|
||||||
|
# for openssl/openssl-sys
|
||||||
|
pkgs.pkg-config
|
||||||
|
|
||||||
# generates manpages
|
# generates manpages
|
||||||
pkgs.mandown
|
pkgs.mandown
|
||||||
|
|
||||||
pkgs.installShellFiles
|
pkgs.installShellFiles
|
||||||
pkgs.copyDesktopItems
|
pkgs.copyDesktopItems
|
||||||
|
|
||||||
# for openssl/openssl-sys
|
|
||||||
pkgs.pkg-config
|
|
||||||
];
|
];
|
||||||
|
|
||||||
devInputs = [
|
devInputs = [
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue