Skip to content

Commit

Permalink
dive: add patch to fix scrolling
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusramberg committed May 2, 2024
1 parent 8285130 commit eddd611
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions pkgs/development/tools/dive/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,20 @@ buildGoModule rec {

buildInputs = lib.optionals stdenv.isLinux [ btrfs-progs gpgme lvm2 ];

patches = [
(fetchpatch {
name = "add-scrolling-layers.patch";
url = "https://github.com/wagoodman/dive/pull/478/commits/b7da0f90880ce5e9d3bc2d0f269aadac6ee63c49.patch";
hash = "sha256-dYqg5JpWKOzy3hVjIVCHA2vmKCtCgc8W+oHEzuGpyxc=";
})
(fetchpatch {
name = "fix-render-update.patch";
url = "https://github.com/wagoodman/dive/pull/478/commits/326fb0d8c9094ac068a29fecd4f103783199392c.patch";
hash = "sha256-NC74MqHVChv/Z5hHX8ds3FI+tC+yyBpXvZKSFG3RyC0=";
})
];


ldflags = [ "-s" "-w" "-X main.version=${version}" ];

meta = with lib; {
Expand Down

0 comments on commit eddd611

Please sign in to comment.