Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
8 lines
219 B
Nix
8 lines
219 B
Nix
{ callPackage }:
|
|
|
|
builtins.mapAttrs (pname: attrs: callPackage ./generic.nix (attrs // { inherit pname; })) {
|
|
zettlr = {
|
|
version = "3.2.0";
|
|
hash = "sha256-gttDGWFJ/VmOyqgOSKnCqqPtNTKJd1fmDpa0ZAX3xc8=";
|
|
};
|
|
}
|