Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
116 changes: 11 additions & 105 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

83 changes: 42 additions & 41 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -1,52 +1,53 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs";
nixpkgs.follows = "nixpkgs-matrix/nixpkgs";
nixpkgs-matrix.url = "github:matrixai/nixpkgs-matrix";
nixpkgs-matrix = {
type = "indirect";
id = "nixpkgs-matrix";
inputs.nixpkgs.url =
"github:NixOS/nixpkgs?rev=e69e710edfed397959507bcee120ec8a9c7ff03e";
};
flake-utils.url = "github:numtide/flake-utils";
};

outputs = { nixpkgs, flake-utils, ... }:
outputs = { nixpkgs-matrix, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
pkgs = nixpkgs-matrix.legacyPackages.${system};

shell = { ci ? false }: with pkgs; mkShell {
nativeBuildInputs = [
nodejs_20
shellcheck
gitAndTools.gh
rustc
cargo
cmake
rustPlatform.bindgenHook
];
NIX_DONT_SET_RPATH = true;
NIX_NO_SELF_RPATH = true;
RUST_SRC_PATH = "${rustPlatform.rustLibSrc}";
shellHook = ''
echo "Entering $(npm pkg get name)"
set -o allexport
. ./.env
set +o allexport
set -v
${
lib.optionalString ci
''
set -o errexit
set -o nounset
set -o pipefail
shopt -s inherit_errexit
''
}
mkdir --parents "$(pwd)/tmp"
export PATH="$(pwd)/dist/bin:$(npm root)/.bin:$PATH"
npm install --ignore-scripts
set +v
'';
};
in
{
shell = { ci ? false }:
with pkgs;
mkShell {
nativeBuildInputs = [
nodejs_20
shellcheck
gitAndTools.gh
rustc
cargo
cmake
rustPlatform.bindgenHook
];
NIX_DONT_SET_RPATH = true;
NIX_NO_SELF_RPATH = true;
RUST_SRC_PATH = "${rustPlatform.rustLibSrc}";
shellHook = ''
echo "Entering $(npm pkg get name)"
set -o allexport
. ./.env
set +o allexport
set -v
${lib.optionalString ci ''
set -o errexit
set -o nounset
set -o pipefail
shopt -s inherit_errexit
''}
mkdir --parents "$(pwd)/tmp"
export PATH="$(pwd)/dist/bin:$(npm root)/.bin:$PATH"
npm install --ignore-scripts
set +v
'';
};
in {
devShells = {
default = shell { ci = false; };
ci = shell { ci = true; };
Expand Down
61 changes: 61 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.