watchman: 4.7.0 -> 4.9.0
This commit is contained in:
parent
3ac73fbb81
commit
8ddc3eb988
@ -1,20 +1,22 @@
|
|||||||
{ stdenv, lib, config, fetchFromGitHub, autoconf, automake, pcre
|
{ stdenv, lib, config, fetchFromGitHub, autoconf, automake, pcre,
|
||||||
, confFile ? config.watchman.confFile or null
|
libtool, pkgconfig, openssl,
|
||||||
|
confFile ? config.watchman.confFile or null
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "watchman-${version}";
|
name = "watchman-${version}";
|
||||||
|
|
||||||
version = "4.7.0";
|
version = "4.9.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "facebook";
|
owner = "facebook";
|
||||||
repo = "watchman";
|
repo = "watchman";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "0xnd7jvrmyxhlw2ggd37swv1mk6vw9j91fdxps6njgvnlfg9zs5n";
|
sha256 = "0fdaj5pmicm6j17d5q7px800m5rmam1a400x3hv1iiifnmhgnkal";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ autoconf automake pcre ];
|
buildInputs = [ pcre openssl ];
|
||||||
|
nativeBuildInputs = [ autoconf automake pkgconfig libtool ];
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--enable-lenient"
|
"--enable-lenient"
|
||||||
@ -26,6 +28,10 @@ stdenv.mkDerivation rec {
|
|||||||
"--disable-statedir"
|
"--disable-statedir"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
prePatch = ''
|
||||||
|
patchShebangs .
|
||||||
|
'';
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
./autogen.sh
|
./autogen.sh
|
||||||
'';
|
'';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user