Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 21 lines 311 B view raw
1{ 2 mkDerivation, 3 lib, 4 extra-cmake-modules, 5 modemmanager, 6 qtbase, 7}: 8 9mkDerivation { 10 pname = "modemmanager-qt"; 11 nativeBuildInputs = [ extra-cmake-modules ]; 12 propagatedBuildInputs = [ 13 modemmanager 14 qtbase 15 ]; 16 outputs = [ 17 "out" 18 "dev" 19 ]; 20 meta.platforms = lib.platforms.linux; 21}