Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 31 lines 504 B view raw
1{ 2 mkDerivation, 3 lib, 4 kdepimTeam, 5 extra-cmake-modules, 6 ki18n, 7 kcodecs, 8 qtbase, 9}: 10 11mkDerivation { 12 pname = "kmime"; 13 meta = { 14 license = [ lib.licenses.lgpl21 ]; 15 maintainers = kdepimTeam; 16 }; 17 nativeBuildInputs = [ extra-cmake-modules ]; 18 buildInputs = [ 19 kcodecs 20 ki18n 21 qtbase 22 ]; 23 outputs = [ 24 "out" 25 "dev" 26 ]; 27 postInstall = '' 28 # added as an include directory by cmake files and fails to compile if it's missing 29 mkdir -p "$dev/include/KF5" 30 ''; 31}