help-guix
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Is a graft warranted here?


From: Tomas Volf
Subject: Re: Is a graft warranted here?
Date: Sat, 15 Jun 2024 10:15:52 +0200

On 2024-06-14 17:34:29 -0700, Felix Lechner wrote:
> Hi Tomas,
>
> Thank you for writing!
>
> On Sat, Jun 15 2024, Tomas Volf wrote:
>
> > Could you write bit more about how to reproduce it and what to look
> > for?
>
> My issue may be with 'guix shell'.  Would you please run
>
>    guix shell nyacc
>
> one time in order to get version 1.08.1 into your store and into your
> local profiles, and then run
>
>    guix shell -f guix.scm
>
> on the package definition I sent.  Sorry I forgot the module includes.
> Here they are part of a larger file, but the ones below should work.

Here is the output (the commit is current master at the time of testing):

    $ guix time-machine -q --commit=43e102be746e5be11ddd9e1af9b65e3d8571d232 -- 
shell guile nyacc -- guile -c '(pk (@ (nyacc version) *nyacc-version*))'

    ;;; ("1.08.1")

    $ guix time-machine -q --commit=43e102be746e5be11ddd9e1af9b65e3d8571d232 -- 
shell guile -f /tmp/guix.scm -- guile -c '(pk (@ (nyacc version) 
*nyacc-version*))'
    The following derivation will be built:
      /gnu/store/50q9n6as12h1ln9nlmb6ra4qr82lncjy-profile.drv

    applying 2 grafts for nyacc-1.10-dev ...
    building CA certificate bundle...
    listing Emacs sub-directories...
    building fonts directory...
    building directory of Info manuals...
    building profile with 2 packages...

    ;;; ("1.09.4")

With the /tmp/guix.scm being:

    (use-modules
     (gnu packages autotools)
     (gnu packages guile)
     (gnu packages guile-xyz)
     (gnu packages linux)
     (gnu packages mes)
     (gnu packages pkg-config)
     (gnu packages texinfo)
     (gnu packages)
     (guix build-system gnu)
     (guix gexp)
     (guix git-download)
     ((guix licenses) #:prefix license:)
     (guix packages)
     (guix utils))

    (define-public nyacc/juix
      (let* ((commit "41691b062b598a92549821879766e0ee48b635da")
             (revision "0"))
        (package
          (inherit nyacc)
          (name "nyacc")
          (version "1.10-dev")
          (source (origin
                    (method git-fetch)
                    (uri (git-reference
                          (url "https://git.savannah.nongnu.org/git/nyacc.git";)
                          (commit commit)))
                    (file-name (git-file-name name version))
                    (sha256
                     (base32
                      "1fa88fix6avyazyiy4k70v9fzdkz1i0p99xnmxmq94j3wpc76y3j"))
                    (modules '((guix build utils)))
                    (snippet
                     '(substitute* "configure"
                        (("GUILE_GLOBAL_SITE=\\$prefix.*")
                         "GUILE_GLOBAL_SITE=\
    $prefix/share/guile/site/$GUILE_EFFECTIVE_VERSION\n"))))))))

    nyacc/juix

Even when I actually put your code into mes.scm it seems to work fine:

    $ guix-dev-shell -- ./pre-inst-env guix shell guile nyacc -- guile -c '(pk 
(@ (nyacc version) *nyacc-version*))'
    [..]
    ;;; ("1.09.4")

Sorry I could not reproduce :/

Have a nice day,
Tomas

--
There are only two hard things in Computer Science:
cache invalidation, naming things and off-by-one errors.

Attachment: signature.asc
Description: PGP signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]