Skip to content

Commit

Permalink
default.nix: Add missing dependency on findutils
Browse files Browse the repository at this point in the history
Closes #19
  • Loading branch information
nbraud authored and srid committed Nov 11, 2023
1 parent 30a3403 commit c89ad7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions default.nix
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{ writeShellApplication, nix, ... }:
{ writeShellApplication, findutils, nix, ... }:

# A convenient invoker for https://github.com/srid/devour-flake that then
# outputs the built derivations to stdout.
writeShellApplication {
name = "devour-flake";
runtimeInputs = [ nix ];
runtimeInputs = [ findutils nix ];
text = ''
FLAKE="$1"
shift 1 || true
Expand Down

0 comments on commit c89ad7a

Please sign in to comment.