diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2024-02-03 14:39:49 +0100 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2024-02-03 14:39:49 +0100 |
commit | e6c847defb6cb25c65172dec46a322e5d3d45088 (patch) | |
tree | 3d249dce1a1f58fcb3c83a41eaf9e1525d7b112e /manifest.scm | |
parent | 3aef72ec5bf1027bc557daab7010848d80711a28 (diff) | |
parent | 179bb57d2532ee6b81791e078b0f782cbf88cb84 (diff) |
Merge branch 'master' into gnome-team
Diffstat (limited to 'manifest.scm')
-rw-r--r-- | manifest.scm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/manifest.scm b/manifest.scm index bcd94b68c5..f328183211 100644 --- a/manifest.scm +++ b/manifest.scm @@ -25,6 +25,11 @@ ;; guix shell --pure git git:send-email openssh (use-modules (guix profiles) + (gnu packages gnupg) (gnu packages package-management)) -(package->development-manifest guix) +(concatenate-manifests + (list (package->development-manifest guix) + + ;; Extra packages used by unit tests. + (packages->manifest (list gnupg)))) |