diff options
| author | Efraim Flashner <efraim@flashner.co.il> | 2025-09-04 14:24:06 +0300 |
|---|---|---|
| committer | Efraim Flashner <efraim@flashner.co.il> | 2025-09-04 14:25:11 +0300 |
| commit | ef36d573f5875b25e83937270ec35e84cde12c49 (patch) | |
| tree | 145ca214d918a07bb47be3677e3216cf371eb83a | |
| parent | c02e5462b681e221d59798d78d1923c760803ca9 (diff) | |
gnu: Add gperf-3.1.
* gnu/packages/gperf.scm (gperf-3.1): New variable.
Change-Id: I8abddfb98e3e2cddf07b65afe6bda0e17f1b3a96
| -rw-r--r-- | gnu/packages/gperf.scm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gnu/packages/gperf.scm b/gnu/packages/gperf.scm index 0a653ccb84..892ac8d034 100644 --- a/gnu/packages/gperf.scm +++ b/gnu/packages/gperf.scm @@ -45,6 +45,18 @@ the hash function is perfect means that no collisions can exist and that look-ups can be made by single string comparisons.") (license gpl3+))) +(define-public gperf-3.1 + (package + (inherit gperf) + (version "3.1") + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnu/gperf/gperf-" + version ".tar.gz")) + (sha256 + (base32 + "1qispg6i508rq8pkajh26cznwimbnj06wq9sd85vg95v8nwld1aq")))))) + (define-public gperf-3.0 ;; This older version would use 'unsigned int' in its generated lookup ;; functions whereas 3.1 uses 'size_t', which causes breakage such as |
