diff options
author | 2024-02-29 04:11:10 +0100 | |
---|---|---|
committer | 2024-03-01 06:45:13 +0100 | |
commit | 9a49ec0dcd6f75736949350844f85d80fe48a662 (patch) | |
tree | b506bb61f4951207aa1aff04080fd3d7874927c3 /default.nix | |
parent | 941f0d4ccb688d42c0438e05051ed78a410431b6 (diff) |
wip: add `review` command
Prototype of the `review` command, cf. `anissue review -h`. Also adds
the `status` command.
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/default.nix b/default.nix index a7b5672..4caf76a 100644 --- a/default.nix +++ b/default.nix @@ -44,7 +44,10 @@ let haskellPackages = pkgs.haskellPackages.override { overrides = self: super: { - lingo = pkgs.haskell.lib.doJailbreak (pkgs.haskell.lib.markUnbroken super.lingo); + diff-parse = pkgs.haskell.lib.appendPatch super.diff-parse + ./diff-parse.patch; + lingo = pkgs.haskell.lib.doJailbreak + (pkgs.haskell.lib.markUnbroken super.lingo); anissue = (super.callCabal2nix "anissue" ./. ({ inherit (pkgs) tree-sitter; } // pkgs.lib.filterAttrs (_: pkgs.lib.isDerivation) @@ -56,6 +59,7 @@ let dependencies = [ pkgs.coreutils pkgs.git + pkgs.patchutils ]; }; postInstall = '' |