2016-07-27 14:27:14 +00:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
name = "syncthing-inotify-${version}";
|
2017-06-16 00:01:27 +00:00
|
|
|
version = "0.8.6";
|
2016-07-27 14:27:14 +00:00
|
|
|
|
|
|
|
goPackagePath = "github.com/syncthing/syncthing-inotify";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2017-02-11 07:21:03 +00:00
|
|
|
owner = "syncthing";
|
|
|
|
repo = "syncthing-inotify";
|
|
|
|
rev = "v${version}";
|
2017-06-16 00:01:27 +00:00
|
|
|
sha256 = "0z1zpb7av4q5nj2d4yda9jcbjdz4yj3823c29y73yf0gfp26lppl";
|
2016-07-27 14:27:14 +00:00
|
|
|
};
|
|
|
|
|
2016-09-10 10:04:13 +00:00
|
|
|
goDeps = ./inotify-deps.nix;
|
2016-07-27 14:27:14 +00:00
|
|
|
|
2016-09-26 07:40:21 +00:00
|
|
|
postInstall = ''
|
2017-05-09 12:58:17 +00:00
|
|
|
mkdir -p $bin/lib/systemd/{system,user}
|
2016-09-26 07:40:21 +00:00
|
|
|
|
|
|
|
substitute $src/etc/linux-systemd/system/syncthing-inotify@.service \
|
2017-05-09 12:58:17 +00:00
|
|
|
$bin/lib/systemd/system/syncthing-inotify@.service \
|
2016-09-26 07:40:21 +00:00
|
|
|
--replace /usr/bin/syncthing-inotify $bin/bin/syncthing-inotify
|
|
|
|
|
|
|
|
substitute $src/etc/linux-systemd/user/syncthing-inotify.service \
|
2017-05-09 12:58:17 +00:00
|
|
|
$bin/lib/systemd/user/syncthing-inotify.service \
|
2016-09-26 07:40:21 +00:00
|
|
|
--replace /usr/bin/syncthing-inotify $bin/bin/syncthing-inotify
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2016-07-27 14:27:14 +00:00
|
|
|
homepage = https://github.com/syncthing/syncthing-inotify;
|
|
|
|
description = "File watcher intended for use with Syncthing";
|
2016-09-26 07:40:21 +00:00
|
|
|
license = licenses.mpl20;
|
|
|
|
maintainers = with maintainers; [ joko peterhoeg ];
|
|
|
|
platforms = platforms.unix;
|
2016-07-27 14:27:14 +00:00
|
|
|
};
|
|
|
|
}
|