diff options
author | Danny Milosavljevic <dannym@scratchpost.org> | 2020-01-21 16:44:18 +0100 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2020-01-21 16:50:00 +0100 |
commit | 6839095af7f6c8a8d5ad481db22cd4ece0a1b5e3 (patch) | |
tree | fb792abf80252d2adfd3403ef3b8ac36ad94db59 /gnu/packages/rust.scm | |
parent | c450ee975529f25607e67cb405a2a6b515cf655e (diff) | |
download | patches-6839095af7f6c8a8d5ad481db22cd4ece0a1b5e3.tar patches-6839095af7f6c8a8d5ad481db22cd4ece0a1b5e3.tar.gz |
gnu: mrustc: Update to 0.8.1.
* gnu/packages/patches/mrustc-0.8.0-fix-variable-length-integer-receiving.patch: Delete file.
* gnu/local.mk (dist_patch_DATA): Remove it.
* gnu/packages/rust.scm (mrustc): Update to 0.8.1.
[source](patches): Remove it.
[native-inputs]: Add zlib.
Diffstat (limited to 'gnu/packages/rust.scm')
-rw-r--r-- | gnu/packages/rust.scm | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gnu/packages/rust.scm b/gnu/packages/rust.scm index cec565bbc8..70e8d0a814 100644 --- a/gnu/packages/rust.scm +++ b/gnu/packages/rust.scm @@ -91,7 +91,7 @@ (let ((rustc-version "1.19.0")) (package (name "mrustc") - (version "0.8.0") + (version "0.8.1") (source (origin (method git-fetch) (uri (git-reference @@ -100,9 +100,7 @@ (file-name (git-file-name name version)) (sha256 (base32 - "0a7v8ccyzp1sdkwni8h1698hxpfz2sxhcpx42n6l2pbm0rbjp08i")) - (patches - (search-patches "mrustc-0.8.0-fix-variable-length-integer-receiving.patch")))) + "00800zckq009kf9v3hb8kp1svryvq3jpg4439ksm3wcidjvszdzc")))) (outputs '("out" "cargo")) (build-system gnu-build-system) (inputs @@ -111,7 +109,8 @@ `(("bison" ,bison) ("flex" ,flex) ;; Required for the libstd sources. - ("rustc" ,(package-source rust-1.19)))) + ("rustc" ,(package-source rust-1.19)) + ("zlib" ,zlib))) (arguments `(#:test-target "local_tests" #:make-flags (list (string-append "LLVM_CONFIG=" |