3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/misc/mlocate/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
583 B
Nix
Raw Normal View History

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