Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 36 lines 486 B view raw
1{ 2 mkDerivation, 3 lib, 4 extra-cmake-modules, 5 kdoctools, 6 baloo, 7 kconfig, 8 kfilemetadata, 9 ki18n, 10 kio, 11 kservice, 12}: 13 14mkDerivation { 15 pname = "baloo-widgets"; 16 meta = { 17 license = [ lib.licenses.lgpl21 ]; 18 maintainers = [ lib.maintainers.ttuegel ]; 19 }; 20 nativeBuildInputs = [ 21 extra-cmake-modules 22 kdoctools 23 ]; 24 propagatedBuildInputs = [ 25 baloo 26 kconfig 27 kfilemetadata 28 ki18n 29 kio 30 kservice 31 ]; 32 outputs = [ 33 "out" 34 "dev" 35 ]; 36}