914e0e594c
https://github.com/NixOS/nixpkgs/pull/17254#issuecomment-245295541 * update docs to describe `deps.nix` * include goDeps in nix-shell GOPATH * NixOS 16.09 rel notes about replacing goPackages
27 lines
734 B
Nix
27 lines
734 B
Nix
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
name = "syncthing-inotify-${version}";
|
|
version = "0.8.3";
|
|
|
|
goPackagePath = "github.com/syncthing/syncthing-inotify";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "syncthing";
|
|
repo = "syncthing-inotify";
|
|
rev = "v${version}";
|
|
sha256 = "194pbz9zzxaz0vri93czpbsxl85znlba2gy61mjgyr0dm2h4s6yw";
|
|
};
|
|
|
|
goDeps = ./inotify-deps.nix;
|
|
|
|
meta = {
|
|
homepage = https://github.com/syncthing/syncthing-inotify;
|
|
description = "File watcher intended for use with Syncthing";
|
|
license = stdenv.lib.licenses.mpl20;
|
|
maintainers = with stdenv.lib.maintainers; [ joko ];
|
|
platforms = with stdenv.lib.platforms; linux ++ freebsd ++ openbsd ++ netbsd;
|
|
};
|
|
|
|
}
|