Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 23 lines 357 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 = [ 17 qttools 18 bison 19 flex 20 ]; 21 extraBuildInputs = [ libimobiledevice ]; 22 meta.mainProgram = "solid-hardware6"; 23}