diff options
author | Danny Milosavljevic <dannym@scratchpost.org> | 2018-09-12 17:41:31 +0200 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2018-09-12 23:17:42 +0200 |
commit | 0bcd1bc7780ad11c398def0717a24214e16bdc6a (patch) | |
tree | 520347d1086c0e9179f7e59c138bf5523638afbe | |
parent | f006237c545babed5151c943fe163ce9852bc9c2 (diff) |
gnu: rust@1.19.0: Use match-lambda directly.
Follow-up to 3159ef7c99c646b78b04cedb1bd3525c301ef978.
* gnu/packages/rust.scm (rust-1.19)[arguments]<#:phases>[build]: Use
match-lambda directly.
-rw-r--r-- | gnu/packages/rust.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/rust.scm b/gnu/packages/rust.scm index 631dcfd67c..e51d90328a 100644 --- a/gnu/packages/rust.scm +++ b/gnu/packages/rust.scm @@ -408,7 +408,7 @@ test = { path = \"../libtest\" } ;; but right now, Cargo has problems with libstd's circular ;; dependencies. (mkdir-p "output/target-libs") - (for-each ((@ (ice-9 match) match-lambda) + (for-each (match-lambda ((name . flags) (write name) (newline) |