rofi-snippets: remove dependency on non-wayland rofi

This commit is contained in:
2024-12-30 14:29:13 +00:00
parent d18cd69536
commit 64b7a75664
2 changed files with 7 additions and 6 deletions

View File

@@ -157,11 +157,12 @@ in
packageUnwrapped = pkgs.static-nix-shell.mkBash {
pname = "rofi-snippets";
srcRoot = ./.;
pkgs = [
"gnused"
"rofi"
"wtype"
];
pkgs = {
inherit (pkgs) gnused wtype;
rofi-wayland = pkgs.rofi-wayland.override {
inherit rofi-unwrapped;
};
};
nativeBuildInputs = [
pkgs.copyDesktopItems
];

View File

@@ -1,5 +1,5 @@
#!/usr/bin/env nix-shell
#!nix-shell -i bash -p bash -p gnused -p rofi -p wtype
#!nix-shell -i bash -p bash -p gnused -p rofi-wayland -p wtype
# "bookmarking"/snippets inspired by Luke Smith:
# - <https://www.youtube.com/watch?v=d_11QaTlf1I>