nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 18 lines 397 B view raw
1{ 2 mkKdeDerivation, 3 qtdeclarative, 4 lmdb, 5}: 6mkKdeDerivation { 7 pname = "baloo"; 8 9 # kde-systemd-start-condition is not part of baloo 10 postPatch = '' 11 substituteInPlace src/file/kde-baloo.service.in --replace-fail @KDE_INSTALL_FULL_BINDIR@/kde-systemd-start-condition /run/current-system/sw/bin/kde-systemd-start-condition 12 ''; 13 14 extraBuildInputs = [ 15 qtdeclarative 16 lmdb 17 ]; 18}