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
6 changes: 3 additions & 3 deletions app/app.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ _: {
{
lib,
pkgs,
jsPkgs,
pkgsUnstable,
ensureAtRepositoryRoot,
...
}:
let
deps = with jsPkgs; [
deps = with pkgsUnstable; [
python3
pkg-config
nodePackages_latest.nodejs
Expand All @@ -18,7 +18,7 @@ _: {
in
{
packages = {
app = jsPkgs.buildNpmPackage {
app = pkgsUnstable.buildNpmPackage {
npmDepsHash = "sha256-o215ZVz15bG3gRLsyLaGqkE8AKheroRkqQvNum7bfzg=";
src = ./.;
sourceRoot = "app";
Expand Down
6 changes: 3 additions & 3 deletions app2/app2.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ _: {
{
lib,
pkgs,
jsPkgs,
pkgsUnstable,
ensureAtRepositoryRoot,
...
}:
let
deps = with jsPkgs; [
deps = with pkgsUnstable; [
python3
stdenv.cc
pkg-config
Expand All @@ -19,7 +19,7 @@ _: {
in
{
packages = {
app2 = jsPkgs.buildNpmPackage {
app2 = pkgsUnstable.buildNpmPackage {
npmDepsHash = "sha256-cgmgvbMV9lIFG4YEA5W2Vk3uvjUIp2BNWcQrEmrortE=";
src = ./.;
sourceRoot = "app2";
Expand Down
6 changes: 3 additions & 3 deletions ceremony/ceremony.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ _: {
{
lib,
pkgs,
jsPkgs,
pkgsUnstable,
ensureAtRepositoryRoot,
...
}:
let
deps = with jsPkgs; [
deps = with pkgsUnstable; [
pkg-config
python3
nodePackages_latest.nodejs
Expand All @@ -17,7 +17,7 @@ _: {
in
{
packages = {
ceremony = jsPkgs.buildNpmPackage {
ceremony = pkgsUnstable.buildNpmPackage {
npmDepsHash = "sha256-2s556is4PJaGmxQhIUPZLINh6J6ngeTf32bwDtl+v6Q=";
src = ./.;
sourceRoot = "ceremony";
Expand Down
6 changes: 3 additions & 3 deletions devShell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ _: {
perSystem =
{
pkgs,
jsPkgs,
pkgsUnstable,
ensureAtRepositoryRoot,
...
}:
let
deps = with jsPkgs; [
deps = with pkgsUnstable; [
vips
pkg-config
nodePackages_latest.nodejs
Expand All @@ -27,7 +27,7 @@ _: {
nix run .#fmt-site

echo "Applying biome fmt"
${jsPkgs.biome}/bin/biome check . --write --unsafe \
${pkgsUnstable.biome}/bin/biome check . --write --unsafe \
--log-level="info" \
--log-kind="pretty" \
--diagnostic-level="info"
Expand Down
14 changes: 7 additions & 7 deletions docs/docs.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ _: {
{
lib,
mkCi,
jsPkgs,
pkgsUnstable,
ensureAtRepositoryRoot,
...
}:
let
deps = with jsPkgs; [
deps = with pkgsUnstable; [
vips
pkg-config
nodePackages_latest.nodejs
Expand All @@ -18,7 +18,7 @@ _: {
{
packages = {
docs = mkCi false (
jsPkgs.buildNpmPackage {
pkgsUnstable.buildNpmPackage {
npmDepsHash = "sha256-pDdKyuOeurWp9LbYFb8/IFdvNPihtpCUi/SIvBN0ZmY=";
src = ./.;
srcs = [
Expand Down Expand Up @@ -46,7 +46,7 @@ _: {
apps = {
docs-dev-server = {
type = "app";
program = jsPkgs.writeShellApplication {
program = pkgsUnstable.writeShellApplication {
name = "docs-dev-server";
runtimeInputs = deps;
text = ''
Expand All @@ -61,7 +61,7 @@ _: {
};
docs-check = {
type = "app";
program = jsPkgs.writeShellApplication {
program = pkgsUnstable.writeShellApplication {
name = "docs-check";
runtimeInputs = deps;
text = ''
Expand All @@ -75,13 +75,13 @@ _: {
npm_config_yes=true npx astro check
npm_config_yes=true npx astro build

nix build .\#checks.${jsPkgs.system}.spellcheck --print-build-logs
nix build .\#checks.${pkgsUnstable.system}.spellcheck --print-build-logs
'';
};
};
deploy-docs-ipfs = {
type = "app";
program = jsPkgs.writeShellApplication {
program = pkgsUnstable.writeShellApplication {
name = "deploy-docs-ipfs";
runtimeInputs = deps;
text = ''
Expand Down
3 changes: 1 addition & 2 deletions docs/openapi.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ _: {
perSystem =
{
pkgs,
unstablePkgs,
openapi,
ensureAtRepositoryRoot,
mkCi,
Expand All @@ -17,7 +16,7 @@ _: {
{
buildInputs =
[ biome ]
++ (with unstablePkgs; [
++ (with pkgs; [
yq
jq
bun
Expand Down
95 changes: 36 additions & 59 deletions flake.lock

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

Loading