mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 12:11:28 +00:00
mlocate: fix default dbfile location after #258575
This commit is contained in:
parent
0c19eb6916
commit
5d230261c9
|
@ -5,10 +5,14 @@ stdenv.mkDerivation rec {
|
|||
version = "0.26";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://releases.pagure.org/mlocate/${pname}-${version}.tar.xz";
|
||||
url = "https://releases.pagure.org/mlocate/mlocate-${version}.tar.xz";
|
||||
sha256 = "0gi6y52gkakhhlnzy0p6izc36nqhyfx5830qirhvk3qrzrwxyqrh";
|
||||
};
|
||||
|
||||
makeFlags = [
|
||||
"dbfile=/var/cache/locatedb"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Merging locate is an utility to index and quickly search for files";
|
||||
homepage = "https://pagure.io/mlocate";
|
||||
|
|
Loading…
Reference in a new issue