mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-20 11:05:14 +00:00
20 lines
252 B
Nix
20 lines
252 B
Nix
{
|
|
mkKdeDerivation,
|
|
pkg-config,
|
|
c-ares,
|
|
curl,
|
|
libphonenumber,
|
|
protobuf,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "spacebar";
|
|
|
|
extraNativeBuildInputs = [ pkg-config ];
|
|
extraBuildInputs = [
|
|
c-ares
|
|
curl
|
|
libphonenumber
|
|
protobuf
|
|
];
|
|
}
|