Re: Building Package and autoreconf not found

2023-10-28 Thread Jesse Millwood
Thanks Tomas, That worked. I also had to add a phase before configure to patch the packages' gen-version-info script because it was in a location that the built-in bootstrap phase couldn't detect. Then I could drop my bootstrap phase too. Jesse On 10/26/23 10:21, Tomas Volf wrote: On 2023-

Re: Building Package and autoreconf not found

2023-10-26 Thread Tomas Volf
On 2023-10-23 15:12:59 -0400, Jesse Millwood wrote: > Hello, > > I am trying to write a Guix package but I have to add a build phase to the > gnu build system. > > I have the following package scm: > > (use-modules >  (guix packages) >  (guix git-download) >  (guix licenses) >  (guix profiles) >

Building Package and autoreconf not found

2023-10-26 Thread Jesse Millwood
Hello, I am trying to write a Guix package but I have to add a build phase to the gnu build system. I have the following package scm: (use-modules  (guix packages)  (guix git-download)  (guix licenses)  (guix profiles)  (guix build-system gnu)  (guix build-system python)  (guix build utils))