add inkscape-xwayland

This commit is contained in:
rhiannon morris 2025-03-03 22:38:56 +01:00
parent 5323992f5b
commit bf3111d84f
2 changed files with 35 additions and 7 deletions

View file

@ -0,0 +1,19 @@
{ inkscape, stdenv, writeScript }:
stdenv.mkDerivation rec {
pname = "inkscape-xwayland";
inherit (inkscape) version;
meta.description = "Inkscape but forced to run under XWayland";
script = writeScript "inkscape-xwayland" ''
#!/usr/bin/env bash
export GDK_BACKEND=x11
${inkscape}/bin/inkscape "$@"
'';
buildInputs = [ inkscape ];
dontUnpack = true; dontFixup = true;
installPhase = ''
mkdir -p $out/bin
cp ${script} $out/bin/inkscape
'';
}

View file

@ -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 {});