Skip to content

Commit 883e123

Browse files
committed
Attempt to fix nix CI
1 parent ecacb2d commit 883e123

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

nix/agda2hs.nix

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,10 @@ let
5151
runCommand "${pname}-${version}"
5252
{
5353
inherit pname version;
54-
nativeBuildInputs = [ makeWrapper ];
54+
nativeBuildInputs = [
55+
pkgs.diffutils
56+
makeWrapper
57+
];
5558
passthru = {
5659
unwrapped = agda2hs;
5760
inherit withPackages;

nix/shell.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,7 @@ pkgs.haskellPackages.shellFor {
2424
pkgs.nixfmt-rfc-style
2525
cabal2nix
2626
pkgs.haskellPackages.fix-whitespace
27+
# The testsuite uses diff, so ensure `diff` is available in the shell/tests
28+
pkgs.diffutils
2729
];
2830
}

0 commit comments

Comments
 (0)