mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 14:33:22 +00:00
c981f0f2c9
(cherry picked from commitf7f5d1a947
) (cherry picked from commite24c6b93b9
)
113 lines
2.0 KiB
Nix
113 lines
2.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
|
|
cmake,
|
|
pkg-config,
|
|
rustc,
|
|
cargo,
|
|
rustPlatform,
|
|
ensureNewerSourcesForZipFilesHook,
|
|
|
|
pcre2,
|
|
openssl,
|
|
gflags,
|
|
glog,
|
|
libevent,
|
|
edencommon,
|
|
folly,
|
|
fizz,
|
|
wangle,
|
|
fbthrift,
|
|
fb303,
|
|
cpptoml,
|
|
apple-sdk_11,
|
|
darwinMinVersionHook,
|
|
|
|
gtest,
|
|
|
|
stateDir ? "/tmp",
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "watchman";
|
|
version = "2024.03.11.00";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "facebook";
|
|
repo = "watchman";
|
|
rev = "refs/tags/v${finalAttrs.version}";
|
|
hash = "sha256-cD8mIYCc+8Z2p3rwKVRFcW9sOBbpb5KHU5VpbXHMpeg=";
|
|
};
|
|
|
|
patches = [
|
|
# fix build with rustc >=1.79
|
|
(fetchpatch {
|
|
url = "https://github.com/facebook/watchman/commit/c3536143cab534cdd9696eb3e2d03c4ac1e2f883.patch";
|
|
hash = "sha256-lpGr5H28gfVXkWNdfDo4SCbF/p5jB4SNlHj6km/rfw4=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
rustc
|
|
cargo
|
|
rustPlatform.cargoSetupHook
|
|
ensureNewerSourcesForZipFilesHook
|
|
];
|
|
|
|
buildInputs =
|
|
[
|
|
pcre2
|
|
openssl
|
|
gflags
|
|
glog
|
|
libevent
|
|
edencommon
|
|
folly
|
|
fizz
|
|
wangle
|
|
fbthrift
|
|
fb303
|
|
cpptoml
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
apple-sdk_11
|
|
(darwinMinVersionHook "11.0")
|
|
];
|
|
|
|
checkInputs = [
|
|
gtest
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DBUILD_SHARED_LIBS=ON"
|
|
"-DENABLE_EDEN_SUPPORT=NO" # requires sapling (formerly known as eden), which is not packaged in nixpkgs
|
|
"-DWATCHMAN_STATE_DIR=${stateDir}"
|
|
"-DWATCHMAN_VERSION_OVERRIDE=${finalAttrs.version}"
|
|
];
|
|
|
|
cargoRoot = "watchman/cli";
|
|
|
|
cargoDeps = rustPlatform.importCargoLock {
|
|
lockFile = ./Cargo.lock;
|
|
};
|
|
|
|
postPatch = ''
|
|
patchShebangs .
|
|
cp ${./Cargo.lock} ${finalAttrs.cargoRoot}/Cargo.lock
|
|
'';
|
|
|
|
meta = {
|
|
description = "Watches files and takes action when they change";
|
|
homepage = "https://facebook.github.io/watchman";
|
|
maintainers = with lib.maintainers; [ kylesferrazza ];
|
|
platforms = lib.platforms.unix;
|
|
license = lib.licenses.mit;
|
|
};
|
|
})
|