mirror of
https://github.com/neon-mmd/websurfx.git
synced 2024-11-21 13:38:21 -05:00
9984ba0d12
- this updates rustc to 1.80.1 - `eslint` has been moved as a top-level package in upstream NixOS/nixpkgs Context: package maintainers are slowly de-bloating `node-packages.nix` Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
64 lines
1.7 KiB
Nix
64 lines
1.7 KiB
Nix
{
|
|
# Websurfx NixOS flake
|
|
inputs = {
|
|
naersk.url = "github:nix-community/naersk/master";
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
|
utils.url = "github:numtide/flake-utils";
|
|
};
|
|
|
|
outputs = {
|
|
naersk,
|
|
nixpkgs,
|
|
self,
|
|
utils,
|
|
}:
|
|
# We do this for all systems - namely x86_64-linux, aarch64-linux,
|
|
# x86_64-darwin and aarch64-darwin
|
|
utils.lib.eachDefaultSystem (system: let
|
|
pkgs = import nixpkgs {inherit system;};
|
|
naersk-lib = pkgs.callPackage naersk {};
|
|
in rec {
|
|
# Build via "nix build .#default"
|
|
packages.default = naersk-lib.buildPackage {
|
|
# The build dependencies
|
|
buildInputs = with pkgs; [pkg-config openssl];
|
|
src = ./.;
|
|
};
|
|
|
|
# Enter devshell with all the tools via "nix develop"
|
|
# or "nix-shell"
|
|
devShells.default = with pkgs;
|
|
mkShell {
|
|
buildInputs = [
|
|
actionlint
|
|
cargo
|
|
docker
|
|
haskellPackages.hadolint
|
|
nodejs
|
|
nodePackages_latest.cspell
|
|
eslint
|
|
nodePackages_latest.markdownlint-cli2
|
|
nodePackages_latest.stylelint
|
|
redis
|
|
rustPackages.clippy
|
|
rust-analyzer
|
|
cargo-watch
|
|
rustc
|
|
rustfmt
|
|
yamllint
|
|
openssl
|
|
pkg-config
|
|
];
|
|
RUST_SRC_PATH = rustPlatform.rustLibSrc;
|
|
shellHook = ''
|
|
export PATH="$PATH:$HOME/.cargo/bin"
|
|
export NODE_PATH="$NODE_PATH:./node_modules"
|
|
'';
|
|
};
|
|
|
|
# Build via "nix build .#websurfx", which is basically just
|
|
# calls the build function
|
|
packages.websurfx = packages.default;
|
|
});
|
|
}
|