diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2015-12-30 16:54:04 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2015-12-30 23:16:09 +0200 |
commit | 99b00dc796bbcbf6e98d83cfa161084aef7e511d (patch) | |
tree | ecca0f5e78fe05f82469bb26d0440960adee2523 /gnu | |
parent | b8834c219eb155d5d8b65f5db6f4f62fd8f0a9fe (diff) |
gnu: python-tlsh: Update to 3.4.4.
* gnu/packages/python.scm (python-tlsh): Update to 3.4.4.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python.scm | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 857dc01123..8d5cbde4b9 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -5827,19 +5827,16 @@ Python Package Index (PyPI).") (define-public python-tlsh (package (name "python-tlsh") - (version "3.4.1") ;according to CMakeLists.txt + (version "3.4.4") (home-page "https://github.com/trendmicro/tlsh") (source (origin - (method git-fetch) - (uri (git-reference - (url home-page) - ;; This is a commit right after 3.4.1; see - ;; <https://github.com/trendmicro/tlsh/issues/9>. - (commit "3ae3f1f"))) + (method url-fetch) + (uri (string-append "https://github.com/trendmicro/tlsh/archive/v" + version ".tar.gz")) (sha256 (base32 - "12cvnr5ndm5cg6i7lch93id90kgwgrigjgrj8f186nh3h4bf9chj")) - (file-name (string-append name "-" version "-checkout")))) + "00bhzjqrlh7v538kbkbn8lgx976j1138al3sdhklaizqjvpwyk4r")) + (file-name (string-append name "-" version ".tar.gz")))) (build-system cmake-build-system) (arguments '(#:out-of-source? #f |