Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
56 lines
918 B
Nix
56 lines
918 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchgit,
|
|
pkg-config,
|
|
meson,
|
|
ninja,
|
|
systemd,
|
|
liburing,
|
|
zstd,
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "plocate";
|
|
version = "1.1.23";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.sesse.net/plocate";
|
|
rev = version;
|
|
sha256 = "sha256-TWQ2mVzosB6sGNUXI2D9GGqgaRZcmiL9GSGrrusck5Q=";
|
|
};
|
|
|
|
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"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Much faster locate";
|
|
homepage = "https://plocate.sesse.net/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [
|
|
peterhoeg
|
|
SuperSandro2000
|
|
];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|