rename package file
This commit is contained in:
parent
6e77a7c4e8
commit
832d2fe674
1 changed files with 0 additions and 0 deletions
19
inkscape-xwayland.nix
Normal file
19
inkscape-xwayland.nix
Normal 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-xwayland
|
||||
'';
|
||||
}
|
Reference in a new issue