2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchurl, config }:
|
2016-10-25 13:58:49 +02:00
|
|
|
|
2017-01-05 20:16:48 +01:00
|
|
|
let
|
2021-01-15 10:19:50 +01:00
|
|
|
dbfile = lib.attrByPath [ "locate" "dbfile" ] "/var/cache/locatedb" config;
|
2017-01-05 20:16:48 +01:00
|
|
|
in stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "mlocate";
|
2016-10-25 13:58:49 +02:00
|
|
|
version = "0.26";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "https://releases.pagure.org/mlocate/${pname}-${version}.tar.xz";
|
2016-10-25 13:58:49 +02:00
|
|
|
sha256 = "0gi6y52gkakhhlnzy0p6izc36nqhyfx5830qirhvk3qrzrwxyqrh";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ ];
|
2017-01-05 20:16:48 +01:00
|
|
|
makeFlags = [ "dbfile=${dbfile}" ];
|
2016-10-25 13:58:49 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2016-10-25 13:58:49 +02:00
|
|
|
description = "Merging locate is an utility to index and quickly search for files";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://pagure.io/mlocate";
|
2016-10-25 13:58:49 +02:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ ];
|
|
|
|
};
|
|
|
|
}
|