fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{
2 mkDerivation,
3 extra-cmake-modules,
4 kconfig, kcoreaddons, kcrash, kdbusaddons, kservice, kwindowsystem,
5 qtbase, qttools, qtx11extras, libXdmcp,
6}:
7
8mkDerivation {
9 pname = "kglobalaccel";
10 nativeBuildInputs = [ extra-cmake-modules ];
11 buildInputs = [
12 kconfig kcoreaddons kcrash kdbusaddons kservice kwindowsystem qttools
13 qtx11extras libXdmcp
14 ];
15 outputs = [ "out" "dev" ];
16 propagatedBuildInputs = [ qtbase ];
17}