diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-09-14 11:31:41 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-09-14 11:37:36 +0300 |
commit | 0ce57ea4a17139038c79a00057635e89103c76f6 (patch) | |
tree | 214e805f7e623961c0a081e846bf881b4b0a053f | |
parent | 6226b8f72d87583322b075d4c51f253f9b13bc07 (diff) |
gnu: dpkg: Update to 1.22.0.
* gnu/packages/debian.scm (dpkg): Update to 1.22.0.
[arguments]: Wrap another script in the custom 'wrap-scripts phase.
-rw-r--r-- | gnu/packages/debian.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/debian.scm b/gnu/packages/debian.scm index f011802ed3..6e40096199 100644 --- a/gnu/packages/debian.scm +++ b/gnu/packages/debian.scm @@ -341,7 +341,7 @@ distributions such as Debian and Trisquel.") (define-public dpkg (package (name "dpkg") - (version "1.21.22") + (version "1.22.0") (source (origin (method git-fetch) @@ -350,7 +350,7 @@ distributions such as Debian and Trisquel.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "0b5czgif5g6pdjzcw60hzzj0i1llxvajf3nlx115axmpa3y4iynd")))) + (base32 "1p7f2mgrn2iy0xfysxfq4pjbbhbhb2rp649bsik0x25jrck4if83")))) (build-system gnu-build-system) (arguments (list #:modules @@ -388,6 +388,7 @@ distributions such as Debian and Trisquel.") `("PATH" ":" prefix (,(string-append #$output "/bin"))))) (list "dpkg-architecture" + "dpkg-buildapi" "dpkg-buildflags" "dpkg-buildpackage" "dpkg-checkbuilddeps" |