Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 38 lines 636 B view raw
1{ 2 mkDerivation, 3 lib, 4 cmake, 5 extra-cmake-modules, 6 threadweaver, 7 ktexteditor, 8 kdevelop-unwrapped, 9 python3, 10}: 11 12mkDerivation { 13 pname = "kdev-python"; 14 15 cmakeFlags = [ 16 "-DPYTHON_EXECUTABLE=${lib.getExe python3}" 17 ]; 18 19 nativeBuildInputs = [ 20 cmake 21 extra-cmake-modules 22 ]; 23 buildInputs = [ 24 threadweaver 25 ktexteditor 26 kdevelop-unwrapped 27 ]; 28 29 dontWrapQtApps = true; 30 31 meta = with lib; { 32 maintainers = [ maintainers.aanderse ]; 33 platforms = platforms.linux; 34 description = "Python support for KDevelop"; 35 homepage = "https://www.kdevelop.org"; 36 license = [ licenses.gpl2 ]; 37 }; 38}