nixpkgs/pkgs/kde/gear/signon-kwallet-extension/default.nix
K900 ce77225e21 pkgs/kde: init at 6.0.0 / 24.02.0, the Nix bits
This is the thing you want to look at.
2024-02-28 18:49:23 +03:00

17 lines
455 B
Nix

{
mkKdeDerivation,
pkg-config,
signond,
}:
mkKdeDerivation {
pname = "signon-kwallet-extension";
extraNativeBuildInputs = [pkg-config];
extraBuildInputs = [signond];
# NB: not actually broken, just makes it install to $out instead of $signon/lib/extensions
# This is useless without a wrapped signond.
# FIXME: wrap signond with SSO_EXTENSIONS_DIR=$wrapper/lib/extensions
extraCmakeFlags = ["-DINSTALL_BROKEN_SIGNON_EXTENSION=1"];
}