mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
findutils: updatedb now uses writable database outside of /nix/store by default
updatedb could only be run by providing the --output parameter, because it would use a path inside the nix store as it's database. The default for --output is now /var/cache/locatedb (the same as in the NixOS locate service)
This commit is contained in:
parent
4810677227
commit
417dbaf6a3
1 changed files with 2 additions and 0 deletions
|
@ -17,6 +17,8 @@ stdenv.mkDerivation rec {
|
|||
|
||||
outputs = [ "out" "info" ];
|
||||
|
||||
configureFlags = [ "--localstatedir=/var/cache" ];
|
||||
|
||||
crossAttrs = {
|
||||
# http://osdir.com/ml/bug-findutils-gnu/2009-08/msg00026.html
|
||||
configureFlags = [ "gl_cv_func_wcwidth_works=yes" ];
|
||||
|
|
Loading…
Reference in a new issue