This commit is contained in:
Matt Nish-Lapidus 2025-06-13 14:41:03 -04:00
parent 18ec9dc2d6
commit 26225b7efb
2 changed files with 31 additions and 21 deletions

10
overlays/zotero.nix Normal file
View file

@ -0,0 +1,10 @@
final: prev: {
zotero-latest = prev.zotero-beta.overrideAttrs (old: {
version = "7.1-beta.37+Be50787c94";
src = prev.fetchurl {
url = "https://download.zotero.org/client/beta/7.1-beta.37%2Be50787c94/Zotero-7.1-beta.37%2Be50787c94_linux-x86_64.tar.bz2";
hash = "sha256-PrFd1k6jUl/3r5nidcA8pGFoIlR2otm1hB+fNnF1x4M=";
};
});
}