587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
13 lines
238 B
Nix
13 lines
238 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtdeclarative,
|
|
pkg-config,
|
|
systemd,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kjournald";
|
|
|
|
extraNativeBuildInputs = [pkg-config];
|
|
extraBuildInputs = [qtdeclarative systemd];
|
|
meta.mainProgram = "kjournaldbrowser";
|
|
}
|