mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-21 19:44:09 +00:00
12 lines
185 B
Nix
12 lines
185 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtdeclarative,
|
|
pkg-config,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kpublictransport";
|
|
|
|
extraNativeBuildInputs = [pkg-config];
|
|
extraBuildInputs = [qtdeclarative];
|
|
}
|