9 lines
255 B
Nix
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"; };
|
|
};
|
|
}
|