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 1f9b00e commit 0e37093Copy full SHA for 0e37093
nix/shell.nix
@@ -16,6 +16,7 @@ hsPkgs.shellFor {
16
pkgs.ghcid
17
pkgs.xrefcheck
18
pkgs.fourmolu
19
+ pkgs.cuddle
20
21
# release management
22
pkgs.scriv
nix/tools.nix
@@ -41,6 +41,15 @@ in
41
compiler-nix-name = "ghc98";
42
};
43
44
+ cuddle = tool "cuddle" "git" {
45
+ src = final.fetchFromGitHub {
46
+ owner = "input-output-hk";
47
+ repo = "cuddle";
48
+ rev = "43050522b2c3326dc2bcb95a3fde852bce5bc729";
49
+ hash = "sha256-S3GJBmvBmnbdb7tD2Fq9FNr9Z8iuT/eWwRpRxq9is10=";
50
+ };
51
52
+
53
haskellBuildUtils = prev.haskellBuildUtils.override {
54
inherit (final.hsPkgs.args) compiler-nix-name;
55
index-state = tool-index-state;
0 commit comments