From mboxrd@z Thu Jan 1 00:00:00 1970 From: Anthony Quizon Subject: installing and searching from custom channel Date: Wed, 22 Apr 2020 16:23:56 +1000 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:56676) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jR8ns-0001Pr-7t for help-guix@gnu.org; Wed, 22 Apr 2020 02:24:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jR8nr-0006C5-HR for help-guix@gnu.org; Wed, 22 Apr 2020 02:24:11 -0400 Received: from mail-lj1-x234.google.com ([2a00:1450:4864:20::234]:33809) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1jR8nr-00066o-11 for help-guix@gnu.org; Wed, 22 Apr 2020 02:24:11 -0400 Received: by mail-lj1-x234.google.com with SMTP id m8so1031647lji.1 for ; Tue, 21 Apr 2020 23:24:09 -0700 (PDT) List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane-mx.org@gnu.org Sender: "Help-Guix" To: help-guix@gnu.org I'm trying to experiment with my own channel packages. Here is my current channel code: https://github.com/anthonyquizon/guix-channel The docs in https://guix.gnu.org/manual/en/html_node/Channels.html mentions that if I have packages in a subdirectory, I need to specify its location in .guix-channel. However, doing this, 'guix pull' does not work and giving me an error: *|builder for `/gnu/store/04xj2y92320w5jd2rs3kqcdd4wxg0w78-anthonyquizon-packages.drv' failed to produce output path `/gnu/store/ky6097zcynxvwdkmgk5vw7p2qrqwyby8-anthonyquizon-packages' build of /gnu/store/04xj2y92320w5jd2rs3kqcdd4wxg0w78-anthonyquizon-packages.drv failed * (I've renamed .guix-channel to _guix-channel for now) I tried to add a package in the root folder and was not able to search or install it via "guix search hello-foo" and "guix install hello-foo" after a "guix pull". The package builds fine with "guix build -L . anthony-hello". Is there something I'm missing?