7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
11 lines
164 B
Nix
11 lines
164 B
Nix
{
|
|
mkKdeDerivation,
|
|
qttools,
|
|
libxslt,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "pimcommon";
|
|
|
|
extraBuildInputs = [ qttools ];
|
|
extraNativeBuildInputs = [ libxslt ];
|
|
}
|