diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-07-22 02:18:47 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-07-22 02:18:47 +0200 |
commit | 77d8bb1552e0f416c7f11456ed672c59cddbd277 (patch) | |
tree | d263ab7189e2416593e999504c3b254df6ac96e1 | |
parent | 476b2877addbb0dbe0e3c2de26fa7ae8e37de9ab (diff) | |
parent | 193a08e254d3e1a6de2b80565d318cd8a07f0651 (diff) | |
download | patches-77d8bb1552e0f416c7f11456ed672c59cddbd277.tar patches-77d8bb1552e0f416c7f11456ed672c59cddbd277.tar.gz |
Merge branch 'version-0.8.3'
-rw-r--r-- | gnu/packages/package-management.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/package-management.scm b/gnu/packages/package-management.scm index bb2d2a5459..55e5037aba 100644 --- a/gnu/packages/package-management.scm +++ b/gnu/packages/package-management.scm @@ -176,9 +176,9 @@ the Nix package manager.") ;; ;; Note: use a short commit id; when using the long one, the limit on socket ;; file names is exceeded while running the tests. - (let ((commit "72cd8ec")) + (let ((commit "5d09263")) (package (inherit guix-0.8.3) - (version (string-append "0.8.2." commit)) + (version (string-append "0.8.3." commit)) (source (origin (method git-fetch) (uri (git-reference @@ -186,7 +186,7 @@ the Nix package manager.") (commit commit))) (sha256 (base32 - "0mfn3y4kihv6xn3a05zafdswy6v8bncddrn4n4qciinplnyg20wa")) + "0v5g90di91j218x620shib7xjrjd5dkk4h1zrlg98hdmbgxq5s3j")) (file-name (string-append "guix-" version "-checkout")))) (arguments (substitute-keyword-arguments (package-arguments guix-0.8.3) @@ -221,7 +221,7 @@ the Nix package manager.") ("help2man" ,help2man) ,@(package-native-inputs guix-0.8.3)))))) -(define-public guix guix-0.8.3) +(define-public guix guix-devel) (define-public nix (package |