Hello Guix, Was looking to play around with minikanren so I installed guile-minikanren on guix and noticed the scheme files had an extra .scm appended to them when installed. So this patch removes them from the files.
Thanks, Erik
From ddc117f8c04406a4ddc6a1ccf3a7510182d8b678 Mon Sep 17 00:00:00 2001 From: Erik Edrosa <erik.edr...@gmail.com> Date: Wed, 20 Apr 2016 16:22:36 -0400 Subject: [PATCH] gnu: guile-minikanren: Remove extra .scm on files. * gnu/packages/guile.scm (guile-minikanren): Remove extra .scm appended to files. --- gnu/packages/guile.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index e247634..f978a42 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -4,6 +4,7 @@ ;;; Copyright © 2015 Christopher Allan Webber <cweb...@dustycloud.org> ;;; Copyright © 2016 Alex Sassmannshausen <a...@pompo.co> ;;; Copyright © 2016 Ricardo Wurmus <rek...@elephly.net> +;;; Copyright © 2016 Erik Edrosa <erik.edr...@gmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -529,7 +530,7 @@ http:://json.org specification. These are the main features: (setenv "GUILE_AUTO_COMPILE" "0") (for-each (lambda (file) (let* ((dest-file (string-append module-dir "/" - file ".scm")) + file)) (go-file (match (string-split file #\.) ((base _) (string-append module-dir "/" -- 2.5.5