Compare commits

..

No commits in common. "875da4301a40bbf2f8a5951d510cc2556ed5b9ce" and "6ded4bb6e9f73c0a1e6f06b4ae7433dd7d161e68" have entirely different histories.

2 changed files with 4 additions and 5 deletions

View file

@ -1,11 +1,10 @@
{ outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
i-w = pkgs.callPackage ./inkscape-xwayland.nix { };
i-w = nixpkgs.legacyPackages.${system}.callPackage ./inkscape-x11.nix { };
in {
packages.${system}.inkscape-xwayland = i-w;
apps.${system}.default = { type = "app"; program = "${i-w}/bin/inkscape"; };
overlays.default = final: prev: { inkscape-xwayland = i-w; };
apps.${system}.default =
{ type = "app"; program = "${i-w}/bin/inkscape-xwayland"; };
};
}

View file

@ -14,6 +14,6 @@ stdenv.mkDerivation rec {
dontUnpack = true; dontFixup = true;
installPhase = ''
mkdir -p $out/bin
cp ${script} $out/bin/inkscape
cp ${script} $out/bin/inkscape-xwayland
'';
}