nixpkgs/pkgs/tools/misc/mlocate/default.nix

25 lines
682 B
Nix
Raw Normal View History

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