2473f4eba4
* plocate: init at 1.1.7
46 lines
987 B
Nix
46 lines
987 B
Nix
{ stdenv
|
|
, lib
|
|
, fetchgit
|
|
, pkg-config
|
|
, meson
|
|
, ninja
|
|
, systemd
|
|
, liburing
|
|
, zstd
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "plocate";
|
|
version = "1.1.7";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.sesse.net/plocate";
|
|
rev = version;
|
|
sha256 = "sha256-5Ie4qgiKUoI9Kma6YvjXirvBbpbKVuaMSSAZa36zN3M=";
|
|
};
|
|
|
|
postPatch = ''
|
|
sed -i meson.build \
|
|
-e "s@unitdir =.*@unitdir = '$out/lib/systemd/system'@" \
|
|
-e '/mkdir\.sh/d'
|
|
'';
|
|
|
|
nativeBuildInputs = [ meson ninja pkg-config ];
|
|
|
|
buildInputs = [ systemd liburing zstd ];
|
|
|
|
mesonFlags = [
|
|
# I don't know why we can't do this but instead have to resort to patching meson.build
|
|
# "-Dsystemdsystemunitdir=${placeholder "out"}/etc/systemd/system"
|
|
"-Dsharedstatedir=/var/lib"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Much faster locate";
|
|
homepage = "https://plocate.sesse.net/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|