nixpkgs/pkgs/tools/misc/plocate/default.nix
2024-04-01 09:54:01 +02:00

47 lines
960 B
Nix

{ stdenv
, lib
, fetchgit
, pkg-config
, meson
, ninja
, systemd
, liburing
, zstd
}:
stdenv.mkDerivation rec {
pname = "plocate";
version = "1.1.22";
src = fetchgit {
url = "https://git.sesse.net/plocate";
rev = version;
sha256 = "sha256-ejv1IsjbImnvI1oorvMoIvTBu3HuVy7VtgHNTIkqqro=";
};
postPatch = ''
sed -i meson.build \
-e '/mkdir\.sh/d'
'';
nativeBuildInputs = [ meson ninja pkg-config ];
buildInputs = [ systemd liburing zstd ];
mesonFlags = [
"-Dsystemunitdir=${placeholder "out"}/etc/systemd/system"
"-Dsharedstatedir=/var/cache"
"-Ddbpath=locatedb"
];
# https://github.com/NixOS/nixpkgs/issues/300635
postInstall = ''chmod -R u-s,g-s "$out"'';
meta = with lib; {
description = "Much faster locate";
homepage = "https://plocate.sesse.net/";
license = licenses.mit;
maintainers = with maintainers; [ peterhoeg SuperSandro2000 ];
platforms = platforms.linux;
};
}