mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 17:53:37 +00:00
13 lines
364 B
Nix
13 lines
364 B
Nix
{ callPackage, texlive }:
|
|
|
|
builtins.mapAttrs (pname: attrs: callPackage ./generic.nix (attrs // { inherit pname; inherit texlive; })) {
|
|
zettlr = {
|
|
version = "2.3.0";
|
|
hash = "sha256-3p9RO6hpioYF6kdGV+/9guoqxaPCJG73OsrN69SHQHk=";
|
|
};
|
|
zettlr-beta = {
|
|
version = "3.0.0-beta.7";
|
|
hash = "sha256-zIZaINE27bcjbs8yCGQ3UKAwStFdvhHD3Q1F93LrG4U=";
|
|
};
|
|
}
|