mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
ce77225e21
This is the thing you want to look at.
22 lines
303 B
Nix
22 lines
303 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtsvg,
|
|
qtdeclarative,
|
|
shared-mime-info,
|
|
poppler,
|
|
libphonenumber,
|
|
protobuf,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kitinerary";
|
|
|
|
extraNativeBuildInputs = [shared-mime-info];
|
|
extraBuildInputs = [
|
|
qtsvg
|
|
qtdeclarative
|
|
poppler
|
|
libphonenumber
|
|
protobuf
|
|
];
|
|
}
|