nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 26 lines 901 B view raw
1diff --git a/justfile b/justfile 2index cd111a1..b6f3827 100644 3--- a/justfile 4+++ b/justfile 5@@ -13,9 +13,9 @@ PKGNAME := env("PKGNAME", "rofi-games") 6 PKGDIR := env("PKGDIR", "") 7 LIB_NAME := "librofi_games.so" 8 PLUGIN_NAME := "games.so" 9-THEMES_DIR := "/usr/share/rofi/themes" 10-LICENSES_DIR := "/usr/share/licenses/" + PKGNAME 11-PLUGINS_DIR := `pkg-config --variable pluginsdir rofi || if test -d "/usr/lib64"; then echo "/usr/lib64/rofi"; else echo "/usr/lib/rofi"; fi` 12+THEMES_DIR := "/share/rofi/themes" 13+LICENSES_DIR := "/share/licenses/" + PKGNAME 14+PLUGINS_DIR := "/lib/rofi" 15 PLUGIN_PATH := join(PLUGINS_DIR, PLUGIN_NAME) 16 17 # Set rust flags if running a version of `rofi` with changes newer than the base `1.7.5` 18@@ -32,7 +32,7 @@ RUSTFLAGS := if `rofi -version` =~ '^Version: 1\.7\.5(?:\+wayland2)?$' { "" } el 19 20 # List commands 21 default: 22- just --list 23+ just build 24 25 # Build 26 build: