Skip to content

Commit

Permalink
feat: use new paisano features
Browse files Browse the repository at this point in the history
- allows to mark actions as requiring arguments
- improves the paisano output handling
  • Loading branch information
blaggacao committed Feb 22, 2024
1 parent 151ecce commit 85bad38
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 31 deletions.
15 changes: 8 additions & 7 deletions flake.lock

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

4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
inputs.nixpkgs.url = "github:nixos/nixpkgs/release-23.11";
inputs.lib.url = "github:nix-community/nixpkgs.lib";
inputs = {
paisano.url = "github:paisano-nix/core";
paisano.url = "github:paisano-nix/core/0.2.0";
paisano.inputs.nixpkgs.follows = "nixpkgs";
paisano.inputs.yants.follows = "yants";
paisano-tui = {
url = "github:paisano-nix/tui/v0.4.3";
url = "github:paisano-nix/tui/v0.5.0";
flake = false; # we're after the source code, only
};
};
Expand Down
21 changes: 11 additions & 10 deletions src/local/flake.lock

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

21 changes: 11 additions & 10 deletions src/tests/flake.lock

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

4 changes: 2 additions & 2 deletions tests/_snapshots/check-augmented-cell-inputs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
namaka = "/nix/store/xgzvi3baaaz9lpymfv6f1fgxfmy0ygvv-source";
nixago = "/nix/store/cys15p6lyyhj85bk4bckn82waih2l945-source";
nixpkgs = "/nix/store/63dmz0d1a6fsqcnrk3bn7vwsyjx3w34l-source";
paisano = "/nix/store/jv5rs7mrlhkphzfkjpk6jlddi2g1nm46-source";
paisano-tui = "/nix/store/hffdasf025iq1lj8fnvh66yjig5arpwi-source";
paisano = "/nix/store/4v8nn2z2vl74yz1557n1dha3l7rzzbgs-source";
paisano-tui = "/nix/store/rdrvzcs8j77fccnkky6p2sagc0d49hyy-source";
terranix = "/nix/store/agasgh0qgqi0fxk3zzgrjvqpx6k8036c-source";
yants = "/nix/store/np6pvhkza8grv26qypzpibwrrg7kqxkc-source";
}
8 changes: 8 additions & 0 deletions tests/_snapshots/flake-module
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,12 @@
{
description = "build it";
name = "build";
requiresArgs = false;
}
{
description = "enter this devshell";
name = "enter";
requiresArgs = false;
}
];
name = "default";
Expand All @@ -91,10 +93,12 @@
{
description = "build it";
name = "build";
requiresArgs = false;
}
{
description = "enter this devshell";
name = "enter";
requiresArgs = false;
}
];
name = "default";
Expand All @@ -117,10 +121,12 @@
{
description = "build it";
name = "build";
requiresArgs = false;
}
{
description = "enter this devshell";
name = "enter";
requiresArgs = false;
}
];
name = "default";
Expand All @@ -143,10 +149,12 @@
{
description = "build it";
name = "build";
requiresArgs = false;
}
{
description = "enter this devshell";
name = "enter";
requiresArgs = false;
}
];
name = "default";
Expand Down

0 comments on commit 85bad38

Please sign in to comment.