mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 21:13:40 +00:00
16 lines
225 B
Nix
16 lines
225 B
Nix
{
|
|
mkKdeDerivation,
|
|
intltool,
|
|
qtdeclarative,
|
|
qtwebengine,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kaccounts-providers";
|
|
|
|
extraNativeBuildInputs = [ intltool ];
|
|
extraBuildInputs = [
|
|
qtdeclarative
|
|
qtwebengine
|
|
];
|
|
}
|