13 lines
197 B
Nix
13 lines
197 B
Nix
|
{
|
||
|
mkKdeDerivation,
|
||
|
qtdeclarative,
|
||
|
pkg-config,
|
||
|
systemd,
|
||
|
}:
|
||
|
mkKdeDerivation {
|
||
|
pname = "kjournald";
|
||
|
|
||
|
extraNativeBuildInputs = [pkg-config];
|
||
|
extraBuildInputs = [qtdeclarative systemd];
|
||
|
}
|