mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 02:42:59 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
44 lines
863 B
Nix
44 lines
863 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"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Much faster locate";
|
|
homepage = "https://plocate.sesse.net/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ peterhoeg SuperSandro2000 ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|