Skip to content

Commit

Permalink
dive: patch fix scrolling
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeDesforges committed May 15, 2024
1 parent af979d2 commit 4a1a582
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions pkgs/development/tools/dive/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,22 @@ buildGoModule rec {
buildInputs = lib.optionals stdenv.isLinux [ btrfs-progs gpgme lvm2 ];

patches = [
# fix scrolling
# See https://github.com/wagoodman/dive/pull/447
(fetchpatch {
name = "fix-scrolling.patch";
url = "https://github.com/wagoodman/dive/pull/473/commits/a885fa6e68b3763d52de20603ee1b9cd8949276f.patch";
hash = "sha256-6gTWfyvK19xDqc7Ah33ewgz/WQRcQHLYwerrwUtRpJc=";
})
(fetchpatch {
name = "add-scrolling-layers.patch";
url = "https://github.com/wagoodman/dive/pull/478/commits/b7da0f90880ce5e9d3bc2d0f269aadac6ee63c49.patch";
url = "https://github.com/wagoodman/dive/pull/473/commits/840653158e235bdd59b4c4621cf282ce6499c714.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=";
url = "https://github.com/wagoodman/dive/pull/473/commits/36177a9154eebe9e3ae9461a9e6f6b368f7974e1.patch";
hash = "sha256-rSeEYxUaYlEZGv+NWYK+nATBYS4P2swqjC3HimHyqNI=";
})
];

Expand Down

0 comments on commit 4a1a582

Please sign in to comment.