Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 41 lines 573 B view raw
1{ 2 mkDerivation, 3 lib, 4 stdenv, 5 extra-cmake-modules, 6 attr, 7 ebook_tools, 8 exiv2, 9 ffmpeg, 10 karchive, 11 kcoreaddons, 12 ki18n, 13 poppler, 14 qtbase, 15 qtmultimedia, 16 taglib, 17}: 18 19mkDerivation { 20 pname = "kfilemetadata"; 21 nativeBuildInputs = [ extra-cmake-modules ]; 22 buildInputs = 23 lib.optionals stdenv.hostPlatform.isLinux [ 24 attr 25 ] 26 ++ [ 27 ebook_tools 28 exiv2 29 ffmpeg 30 karchive 31 kcoreaddons 32 ki18n 33 poppler 34 qtbase 35 qtmultimedia 36 taglib 37 ]; 38 patches = [ 39 ./cmake-install-paths.patch 40 ]; 41}