diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2020-10-28 08:58:06 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-10-28 08:58:06 +0200 |
commit | 0dc301838f4ae3be172a595c1f92279a2d40c714 (patch) | |
tree | 55057ef74fef6c1f0b6c58dc396811d9712dbb7b /gnu/packages | |
parent | 0b96047e58c71eef38145702b93dfe6f64a74a80 (diff) |
gnu: gama: Remove bundled library.
* gnu/packages/gps.scm (gama)[source]: Add snippet to remove bundled
expat-1.1 library.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/gps.scm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/packages/gps.scm b/gnu/packages/gps.scm index 1f3729155d..74942b37f6 100644 --- a/gnu/packages/gps.scm +++ b/gnu/packages/gps.scm @@ -159,7 +159,12 @@ between two other data points.") version ".tar.gz")) (sha256 (base32 - "1iw7d0lfjhvp7lnyj0lxy62zpa2d05gfra3fq4sz8nyjwss0gmqh")))) + "1iw7d0lfjhvp7lnyj0lxy62zpa2d05gfra3fq4sz8nyjwss0gmqh")) + (modules '((guix build utils))) + (snippet + '(begin + (delete-file-recursively "lib/expat") + #t)))) (build-system gnu-build-system) (arguments '(#:parallel-tests? #f)) ; race condition (native-inputs |