diff options
author | Nguyễn Gia Phong <cnx@loang.net> | 2024-11-19 11:02:16 +0900 |
---|---|---|
committer | Nguyễn Gia Phong <cnx@loang.net> | 2024-11-19 11:02:16 +0900 |
commit | 1725ce5a7daf99a75508f15650a01321dd5a8ecc (patch) | |
tree | 77373eb85fd08c0236edf9d9a6b648eb28cbec00 /loft/bugs.scm | |
download | loftix-1725ce5a7daf99a75508f15650a01321dd5a8ecc.tar.gz |
Define some packages
Diffstat (limited to 'loft/bugs.scm')
-rw-r--r-- | loft/bugs.scm | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/loft/bugs.scm b/loft/bugs.scm new file mode 100644 index 0000000..62cdfbd --- /dev/null +++ b/loft/bugs.scm @@ -0,0 +1,15 @@ +(use-modules (gnu packages base) + (guix packages)) + +(define-public binutils-2.29 + (package + (inherit binutils-2.33) + (version "2.29") + (source (origin + (inherit (package-source binutils)) + (uri (string-append "mirror://gnu/binutils/binutils-" + version ".tar.bz2")) + (sha256 + (base32 + "1gqfyksdnj3iir5gzyvlp785mnk60g1pll6zbzbslfchhr4rb8i9")) + (patches '()))))) |