We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecacb2d commit 883e123Copy full SHA for 883e123
nix/agda2hs.nix
@@ -51,7 +51,10 @@ let
51
runCommand "${pname}-${version}"
52
{
53
inherit pname version;
54
- nativeBuildInputs = [ makeWrapper ];
+ nativeBuildInputs = [
55
+ pkgs.diffutils
56
+ makeWrapper
57
+ ];
58
passthru = {
59
unwrapped = agda2hs;
60
inherit withPackages;
nix/shell.nix
@@ -24,5 +24,7 @@ pkgs.haskellPackages.shellFor {
24
pkgs.nixfmt-rfc-style
25
cabal2nix
26
pkgs.haskellPackages.fix-whitespace
27
+ # The testsuite uses diff, so ensure `diff` is available in the shell/tests
28
29
];
30
}
0 commit comments