diff options
author | Leo Famulari <leo@famulari.name> | 2017-10-11 01:12:27 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2017-10-12 21:22:48 -0400 |
commit | 8d7e99243a367923751489e164cc28c3747d8a25 (patch) | |
tree | 576a4483631cc496a4c156ea609664183b26392e /gnu/packages/syncthing.scm | |
parent | 73a2f8418d85254a2648e760cf4e48ebf7ac749e (diff) | |
download | gnu-guix-8d7e99243a367923751489e164cc28c3747d8a25.tar gnu-guix-8d7e99243a367923751489e164cc28c3747d8a25.tar.gz |
gnu: Add go-github-com-sasha-s-go-deadlock.
* gnu/packages/syncthing.scm (go-github-com-sasha-s-go-deadlock): New variable.
Diffstat (limited to 'gnu/packages/syncthing.scm')
-rw-r--r-- | gnu/packages/syncthing.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/syncthing.scm b/gnu/packages/syncthing.scm index 1fb25d7b84..d905184c1a 100644 --- a/gnu/packages/syncthing.scm +++ b/gnu/packages/syncthing.scm @@ -515,6 +515,32 @@ Metrics library.") (home-page "https://github.com/rcrowley/go-metrics") (license bsd-2)))) +(define-public go-github-com-sasha-s-go-deadlock + (let ((commit "341000892f3dd25f440e6231e8533eb3688ed7ec") + (revision "0")) + (package + (name "go-github-com-sasha-s-go-deadlock") + (version (git-version "0.1.0" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sasha-s/go-deadlock") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1bcdyxwm5qpqynxahwaahbqi7ghgdajmg7b4276pdalkxkxkhsv8")))) + (build-system go-build-system) + (arguments + `(#:import-path "github.com/sasha-s/go-deadlock")) + (propagated-inputs + `(("go-github-com-petermattis-goid" ,go-github-com-petermattis-goid))) + (synopsis "Deadlock detection in go") + (description "This package provides tools for detecting deadlocks at +run-time in Go.") + (home-page "https://github.com/sasha-s/go-deadlock") + (license asl2.0)))) + (define-public go-golang-org-x-sys-unix (let ((commit "f3918c30c5c2cb527c0b071a27c35120a6c0719a") (revision "0")) |