Skip to content

Commit

Permalink
nix: clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
sinanmohd committed Aug 30, 2024
1 parent 2f28cd1 commit 404b98c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
17 changes: 13 additions & 4 deletions nixos/tests/all-tests.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ let
inputs.b = { };
};
nodes.b.inputs.c = { };
nodes.c = {};
nodes.c = { };
};

# A B C D
Expand All @@ -36,9 +36,18 @@ let
};
in
{
a = goalDependsOn [ "u" "v" ];
b = goalDependsOn [ "u" "v" ];
c = goalDependsOn [ "u" "v" ];
a = goalDependsOn [
"u"
"v"
];
b = goalDependsOn [
"u"
"v"
];
c = goalDependsOn [
"u"
"v"
];
d = goalDependsOn [ "w" ];

u = { };
Expand Down
2 changes: 1 addition & 1 deletion package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
pkg-config,
stdenv,
uthash,
sqlite
sqlite,
}:
stdenv.mkDerivation (finalAttrs: {
name = "evanix";
Expand Down

0 comments on commit 404b98c

Please sign in to comment.