summaryrefslogtreecommitdiff
path: root/zim.nix
diff options
context:
space:
mode:
Diffstat (limited to 'zim.nix')
-rw-r--r--zim.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/zim.nix b/zim.nix
new file mode 100644
index 0000000..1b7657c
--- /dev/null
+++ b/zim.nix
@@ -0,0 +1,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=";
+ };
+ });
+}