7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
15 lines
225 B
Nix
15 lines
225 B
Nix
{
|
|
mkKdeDerivation,
|
|
intltool,
|
|
qtdeclarative,
|
|
qtwebengine,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kaccounts-providers";
|
|
|
|
extraNativeBuildInputs = [ intltool ];
|
|
extraBuildInputs = [
|
|
qtdeclarative
|
|
qtwebengine
|
|
];
|
|
}
|