mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
12 lines
164 B
Nix
12 lines
164 B
Nix
{
|
|
mkKdeDerivation,
|
|
qttools,
|
|
libxslt,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "pimcommon";
|
|
|
|
extraBuildInputs = [ qttools ];
|
|
extraNativeBuildInputs = [ libxslt ];
|
|
}
|