This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
inkscape-xwayland/inkscape-xwayland.nix

19 lines
476 B
Nix

{ 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
'';
}