Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at fix-function-merge 19 lines 339 B view raw
1{ 2 mkKdeDerivation, 3 qttools, 4 bison, 5 flex, 6 libimobiledevice, 7}: 8mkKdeDerivation { 9 pname = "solid"; 10 11 patches = [ 12 # Also search /run/wrappers for mount/umount 13 ./fix-search-path.patch 14 ]; 15 16 extraNativeBuildInputs = [qttools bison flex]; 17 extraBuildInputs = [libimobiledevice]; 18 meta.mainProgram = "solid-hardware6"; 19}