Skip to content

Commit

Permalink
fix: pass nix flake check; ignore result
Browse files Browse the repository at this point in the history
  • Loading branch information
dr460nf1r3 committed Sep 27, 2023
1 parent 32b2b27 commit ba4c3b0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
9 changes: 5 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
.vscode
/target
package.json
package-lock.json
dhat-heap.json
dump.rdb
.vscode
megalinter-reports/
dhat-heap.json
package-lock.json
package.json
result
6 changes: 3 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@
naersk-lib = pkgs.callPackage naersk {};
in rec {
# Build via nix build .#defaultPackage.x86_64-linux
defaultPackage = naersk-lib.buildPackage {
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"
devShell = with pkgs;
devShells.default = with pkgs;
mkShell {
buildInputs = [
actionlint
Expand All @@ -46,6 +46,6 @@
};

# Build via "nix build .#websurfx.x86_64-linux"
websurfx = defaultPackage;
packages.websurfx = packages.default;
});
}

0 comments on commit ba4c3b0

Please sign in to comment.