add inkscape-xwayland
This commit is contained in:
parent
5323992f5b
commit
bf3111d84f
2 changed files with 35 additions and 7 deletions
23
flake.nix
23
flake.nix
|
@ -8,14 +8,23 @@
|
|||
getCallPackage = system: nixpkgs.legacyPackages.${system}.callPackage;
|
||||
ifLinux64 = system: attrs: optionalAttrs (system == "x86_64-linux") attrs;
|
||||
|
||||
linuxPackageNames =
|
||||
[ "basilisk" "firefox-esr-alias" "isabelle" "multi-ghc" ];
|
||||
fontNames =
|
||||
[ "constructium" "fairfax-hd" "kreative-square" "muller"
|
||||
"pragmatapro" "teranoptia" ];
|
||||
linuxPackageNames = [
|
||||
"multi-ghc"
|
||||
"basilisk" "isabelle"
|
||||
"firefox-esr-alias" "inkscape-xwayland"
|
||||
];
|
||||
fontNames = [
|
||||
"constructium" "fairfax-hd" "kreative-square" "muller"
|
||||
"pragmatapro" "teranoptia"
|
||||
];
|
||||
|
||||
linuxAppNames = [ "basilisk" "isabelle" "firefox-esr-alias" ];
|
||||
linuxAppExes = { "firefox-esr-alias" = "firefox-esr"; };
|
||||
linuxAppNames = [
|
||||
"basilisk" "isabelle" "firefox-esr-alias" "inkscape-xwayland"
|
||||
];
|
||||
linuxAppExes = {
|
||||
firefox-esr-alias = "firefox-esr";
|
||||
inkscape-xwayland = "inkscape";
|
||||
};
|
||||
|
||||
packagesInDir = names: dir: call:
|
||||
genAttrs names (pkg: call ./${dir}/${pkg}.nix {});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue