diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-07-19 14:04:26 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-19 15:36:20 +0200 |
commit | e848419d928008d903b35c8bb0a254ad9cffa8dc (patch) | |
tree | a4dd7d89b3514781765233d4229951f44e265d0d | |
parent | 93b65f5aca6ebe7b953deb6bdfc09a8ce34e4183 (diff) |
gnu: c-reduce: Switch to git source.
The original page is down.
* gnu/packages/debug.scm (c-reduce)[source]: Switch to git-fetch.
Signed-off-by: Andreas Enge <andreas@enge.fr>
-rw-r--r-- | gnu/packages/debug.scm | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/gnu/packages/debug.scm b/gnu/packages/debug.scm index d454bceb40..b489bee72b 100644 --- a/gnu/packages/debug.scm +++ b/gnu/packages/debug.scm @@ -135,12 +135,13 @@ program to exhibit a bug.") (version "2.10.0") (source (origin - (method url-fetch) - (uri (list - (string-append "http://embed.cs.utah.edu/creduce/" - "creduce-" version ".tar.gz"))) - (sha256 - (base32 "0qx0zq8jxzx2as2zf0740g7kvgq163ayn3041di4vwk77490y76v")))) + (method git-fetch) + (uri (git-reference + (url "https://github.com/csmith-project/creduce") + (commit (string-append "creduce-" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ygzn32mzqn02wslaw1gwgx498mvfgpgkgir3pp1mgd3k18l3pqr")))) (build-system gnu-build-system) (native-inputs (list flex)) (inputs |