Re: List build dependencies of a store item

2019-10-23 Thread Arun Isaac
> The script is here: > https://lists.gnu.org/archive/html/guix-devel/2018-07/msg00212.html Yes, this is the one. Thank you! signature.asc Description: PGP signature

Re: List build dependencies of a store item

2019-10-23 Thread Arun Isaac
>> I am customizing the git-minimal package, and for some reason python is >> getting rebuilt from source, and I'm not able to figure out why. I figured this is due to git-minimal depending on curl which in turn depends on python as a native-input. > I assume git-minimal is used for the guile-gi

Re: List build dependencies of a store item

2019-10-23 Thread Gábor Boskovits
Hello, Arun Isaac ezt írta (időpont: 2019. okt. 23., Sze, 18:43): > > > I think a store item doesn't know where it comes from, so you can only > > find its runtime references. > > That's a good point. I missed that. > > > If you have a package foo, you can find its build-time dependencies > > wi

Re: List build dependencies of a store item

2019-10-23 Thread Arun Isaac
> I think a store item doesn't know where it comes from, so you can only > find its runtime references. That's a good point. I missed that. > If you have a package foo, you can find its build-time dependencies > with guix graph: > > guix graph foo Indeed, this is what I want but for a modified

Re: List build dependencies of a store item

2019-10-23 Thread Efraim Flashner
On Wed, Oct 23, 2019 at 11:03:37AM +0530, Arun Isaac wrote: > > I am customizing the git-minimal package, and for some reason python is > getting rebuilt from source, and I'm not able to figure out why. > > I can recursively list/graph runtime dependencies (references) of a > store item using the

Re: List build dependencies of a store item

2019-10-22 Thread Julien Lepiller
Le 23 octobre 2019 07:33:37 GMT+02:00, Arun Isaac a écrit : > >I am customizing the git-minimal package, and for some reason python is >getting rebuilt from source, and I'm not able to figure out why. > >I can recursively list/graph runtime dependencies (references) of a >store item using the fol

List build dependencies of a store item

2019-10-22 Thread Arun Isaac
I am customizing the git-minimal package, and for some reason python is getting rebuilt from source, and I'm not able to figure out why. I can recursively list/graph runtime dependencies (references) of a store item using the following commands. guix size /gnu/store/... guix graph -t references