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
2024-12-13 18:16:33 +01:00

9 lines
255 B
Nix

{ outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
i-w = nixpkgs.legacyPackages.${system}.callPackage ./inkscape-x11.nix { };
in {
apps.${system}.default =
{ type = "app"; program = "${i-w}/bin/inkscape-xwayland"; };
};
}