From bf3111d84f382d993dab7e0dcf0523d42e174e84 Mon Sep 17 00:00:00 2001 From: rhiannon morris Date: Mon, 3 Mar 2025 22:38:56 +0100 Subject: [PATCH] add inkscape-xwayland --- apps/inkscape-xwayland.nix | 19 +++++++++++++++++++ flake.nix | 23 ++++++++++++++++------- 2 files changed, 35 insertions(+), 7 deletions(-) create mode 100644 apps/inkscape-xwayland.nix diff --git a/apps/inkscape-xwayland.nix b/apps/inkscape-xwayland.nix new file mode 100644 index 0000000..e569261 --- /dev/null +++ b/apps/inkscape-xwayland.nix @@ -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 + ''; +} diff --git a/flake.nix b/flake.nix index 89be10f..da4488b 100644 --- a/flake.nix +++ b/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 {});