mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
ce77225e21
This is the thing you want to look at.
16 lines
455 B
Nix
16 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"];
|
|
}
|