mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-05 19:53:43 +00:00
12 lines
196 B
Nix
12 lines
196 B
Nix
{
|
|
mkKdeDerivation,
|
|
pkg-config,
|
|
modemmanager,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "modemmanager-qt";
|
|
|
|
extraNativeBuildInputs = [ pkg-config ];
|
|
extraPropagatedBuildInputs = [ modemmanager ];
|
|
}
|