Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 39 lines 624 B view raw
1{ 2 mkDerivation, 3 lib, 4 kdepimTeam, 5 extra-cmake-modules, 6 kdoctools, 7 kcalendarcore, 8 kcalutils, 9 kcontacts, 10}: 11 12mkDerivation { 13 pname = "ktnef"; 14 meta = { 15 license = with lib.licenses; [ 16 gpl2Plus 17 lgpl21Plus 18 fdl12Plus 19 ]; 20 maintainers = kdepimTeam; 21 }; 22 nativeBuildInputs = [ 23 extra-cmake-modules 24 kdoctools 25 ]; 26 propagatedBuildInputs = [ 27 kcalendarcore 28 kcalutils 29 kcontacts 30 ]; 31 outputs = [ 32 "out" 33 "dev" 34 ]; 35 postInstall = '' 36 # added as an include directory by cmake files and fails to compile if it's missing 37 mkdir -p "$dev/include/KF5" 38 ''; 39}