summaryrefslogtreecommitdiff
path: root/zim.nix
blob: 1b7657c2d3fbe4cf38c76c04a49c895445e9df96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ inputs }:
self: super: {
  zim_my =
    with super;
    zim.overrideAttrs (oldAttrs: rec {
      version = "0.76.1";
      src = fetchurl {
        url = "https://zim-wiki.org/downloads/zim-${version}.tar.gz";
        hash = "sha256-ao7dYldQogjxubAJB3vsTSjTgzOYjkoEei1qWUv5EFU=";
      };
    });
}