diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2016-09-05 15:23:11 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2016-09-05 15:25:27 +0300 |
commit | f99cfc19a2f0617c2d438044bfc1431b1854c125 (patch) | |
tree | 5139e0555353c80872055fb9ccabec90dd6a443e /gnu | |
parent | 35b380648b063db9a8b11352b1ae85d8f1ff7c70 (diff) | |
download | patches-f99cfc19a2f0617c2d438044bfc1431b1854c125.tar patches-f99cfc19a2f0617c2d438044bfc1431b1854c125.tar.gz |
gnu: borg: Rebuild generated C files.
* gnu/packages/backup.scm (borg)[source]: Remove generated '.c' files.
[native-inputs]: Add python-cython.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/backup.scm | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm index dcab95fa28..4678b9b91f 100644 --- a/gnu/packages/backup.scm +++ b/gnu/packages/backup.scm @@ -410,10 +410,13 @@ detection, and lossless compression.") (source (origin (method url-fetch) (uri (pypi-uri "borgbackup" version)) - (sha256 (base32 - "1l9iw55w5x51yxl3q89cf6avg80lajxvc8qz584hrsmnk6i56cr0")))) + "1l9iw55w5x51yxl3q89cf6avg80lajxvc8qz584hrsmnk6i56cr0")) + (modules '((guix build utils))) + (snippet + '(for-each + delete-file (find-files "borg" "^(c|h|p).*\\.c$"))))) (build-system python-build-system) (arguments `(#:phases @@ -437,7 +440,8 @@ detection, and lossless compression.") (install-file "docs/_build/man/borg.1" man) #t)))))))) (native-inputs - `(("python-setuptools-scm" ,python-setuptools-scm) + `(("python-cython" ,python-cython) + ("python-setuptools-scm" ,python-setuptools-scm) ;; For generating the documentation. ("python-sphinx" ,python-sphinx) ("python-sphinx-rtd-theme" ,python-sphinx-rtd-theme))) |