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/flake.nix

11 lines
381 B
Nix

{ outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
i-w = pkgs.callPackage ./inkscape-xwayland.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; };
};
}