Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 25 lines 437 B view raw
1{ 2 mkKdeDerivation, 3 pkg-config, 4 qtlocation, 5 qtpositioning, 6 shared-mime-info, 7 libical, 8}: 9mkKdeDerivation { 10 pname = "itinerary"; 11 12 # FIXME: this should really be fixed at ECM level somehow 13 patches = [ ./optional-runtime-dependencies.patch ]; 14 15 extraNativeBuildInputs = [ 16 pkg-config 17 shared-mime-info 18 ]; 19 extraBuildInputs = [ 20 qtlocation 21 qtpositioning 22 libical 23 ]; 24 meta.mainProgram = "itinerary"; 25}