Re: [PATCH 02/12] build-system: Add cargo build system.

2017-01-01 Thread David Craven
Yes this is a bug. Before modifying Cargo.toml we should chmod +w. Thank you for reporting it. The home-page issue in the importer also needs fixing. I expressed being against deduplicating the inputs because I think that that is subject to change in the future.

Re: [PATCH 02/12] build-system: Add cargo build system.

2016-12-30 Thread Danny Milosavljevic
Hi, when I use git-download, the files it checked out will have r-- permissions and thus cargo-build-system can't patch Cargo.toml . To reproduce, try: (define-public rust-c-vec (package (name "rust-c-vec") (version "1.1.0") (source (origin (method git-fetch) (uri (git-re

Re: [PATCH 02/12] build-system: Add cargo build system.

2016-12-13 Thread Ludovic Courtès
David Craven skribis: > * guix/build-system/cargo.scm: New file. > * guix/build/cargo-build-system.scm: New file. Along with gnu/local.mk please. OK with this change! Ludo’.

[PATCH 02/12] build-system: Add cargo build system.

2016-12-11 Thread David Craven
* guix/build-system/cargo.scm: New file. * guix/build/cargo-build-system.scm: New file. --- guix/build-system/cargo.scm | 149 ++ guix/build/cargo-build-system.scm | 103 ++ 2 files changed, 252 insertions(+) create mode 100644 gui