python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / plocate / default.nix
blob468b2ca7842b297453d977bccc9845bbc5e73809
1 { config
2 , stdenv
3 , lib
4 , fetchgit
5 , pkg-config
6 , meson
7 , ninja
8 , systemd
9 , liburing
10 , zstd
12 let
13   dbfile = lib.attrByPath [ "locate" "dbfile" ] "/var/cache/locatedb" config;
15 stdenv.mkDerivation rec {
16   pname = "plocate";
17   version = "1.1.16";
19   src = fetchgit {
20     url = "https://git.sesse.net/plocate";
21     rev = version;
22     sha256 = "sha256-rwvzDr3leve8BQ30+c3l1+q/7+u7FhPQ7iFcvbx/HjM=";
23   };
25   postPatch = ''
26     sed -i meson.build \
27       -e '/mkdir\.sh/d'
28   '';
30   nativeBuildInputs = [ meson ninja pkg-config ];
32   buildInputs = [ systemd liburing zstd ];
34   mesonFlags = [
35     "-Dsystemunitdir=${placeholder "out"}/etc/systemd/system"
36     "-Dsharedstatedir=${builtins.dirOf dbfile}"
37     "-Ddbpath=${builtins.baseNameOf dbfile}"
38   ];
40   meta = with lib; {
41     description = "Much faster locate";
42     homepage = "https://plocate.sesse.net/";
43     license = licenses.mit;
44     maintainers = with maintainers; [ peterhoeg SuperSandro2000 ];
45     platforms = platforms.linux;
46   };