diff options
Diffstat (limited to 'accounts/gkleen@sif/shell/quickshell-plugins/default.nix')
-rw-r--r-- | accounts/gkleen@sif/shell/quickshell-plugins/default.nix | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/accounts/gkleen@sif/shell/quickshell-plugins/default.nix b/accounts/gkleen@sif/shell/quickshell-plugins/default.nix new file mode 100644 index 00000000..fafea90e --- /dev/null +++ b/accounts/gkleen@sif/shell/quickshell-plugins/default.nix | |||
@@ -0,0 +1,20 @@ | |||
1 | { lib | ||
2 | , stdenv | ||
3 | , cmake | ||
4 | , qt6 | ||
5 | , fmt | ||
6 | }: | ||
7 | stdenv.mkDerivation rec { | ||
8 | name = "quickshell-custom"; | ||
9 | |||
10 | src = ./.; | ||
11 | nativeBuildInputs = [ cmake qt6.wrapQtAppsHook ]; | ||
12 | buildInputs = [ | ||
13 | qt6.qtbase | ||
14 | qt6.qtdeclarative | ||
15 | ]; | ||
16 | |||
17 | cmakeFlags = [ | ||
18 | (lib.cmakeFeature "INSTALL_QML_PREFIX" qt6.qtbase.qtQmlPrefix) | ||
19 | ]; | ||
20 | } | ||