Skip to content

Commit

Permalink
Merge pull request #43 from MatrixAI/feature-flake-indirect
Browse files Browse the repository at this point in the history
Indirect package set flake input
  • Loading branch information
brynblack authored Sep 19, 2024
2 parents 8ef9c60 + b9d0272 commit 41da028
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 148 deletions.
122 changes: 14 additions & 108 deletions flake.lock

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

74 changes: 34 additions & 40 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -1,51 +1,45 @@
{
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";
};
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
nodejs.python
shellcheck
gitAndTools.gh
clang-tools
];
NIX_DONT_SET_RPATH = true;
NIX_NO_SELF_RPATH = true;
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"
export npm_config_nodedir="${nodejs}"
export NIX_DEBUG=1
npm install --ignore-scripts
set +v
'';
};
in
{
shell = { ci ? false }:
with pkgs;
mkShell {
nativeBuildInputs =
[ nodejs_20 nodejs.python shellcheck gitAndTools.gh clang-tools ];
NIX_DONT_SET_RPATH = true;
NIX_NO_SELF_RPATH = true;
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"
export npm_config_nodedir="${nodejs}"
export NIX_DEBUG=1
npm install --ignore-scripts
set +v
'';
};
in {
devShells = {
default = shell { ci = false; };
ci = shell { ci = true; };
Expand Down

0 comments on commit 41da028

Please sign in to comment.