From 875da4301a40bbf2f8a5951d510cc2556ed5b9ce Mon Sep 17 00:00:00 2001 From: rhiannon morris Date: Fri, 13 Dec 2024 18:51:04 +0100 Subject: [PATCH] call the executable inkscape. whatever --- flake.nix | 6 +++--- inkscape-xwayland.nix | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index 015d92f..8e9b88f 100644 --- a/flake.nix +++ b/flake.nix @@ -1,11 +1,11 @@ { outputs = { self, nixpkgs }: let system = "x86_64-linux"; - i-w = nixpkgs.legacyPackages.${system}.callPackage ./inkscape-x11.nix { }; + 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-xwayland"; }; + apps.${system}.default = { type = "app"; program = "${i-w}/bin/inkscape"; }; overlays.default = final: prev: { inkscape-xwayland = i-w; }; }; } diff --git a/inkscape-xwayland.nix b/inkscape-xwayland.nix index aa1d4bf..49ba505 100644 --- a/inkscape-xwayland.nix +++ b/inkscape-xwayland.nix @@ -14,6 +14,6 @@ stdenv.mkDerivation rec { dontUnpack = true; dontFixup = true; installPhase = '' mkdir -p $out/bin - cp ${script} $out/bin/inkscape-xwayland + cp ${script} $out/bin/inkscape ''; }