From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nathan Dehnel Subject: "no code for module" Date: Sat, 28 Dec 2019 16:28:50 -0600 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]:38807) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ilKa2-0004mh-PF for help-guix@gnu.org; Sat, 28 Dec 2019 17:29:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ilKa1-0008EH-Id for help-guix@gnu.org; Sat, 28 Dec 2019 17:29:06 -0500 Received: from mail-wr1-x42f.google.com ([2a00:1450:4864:20::42f]:36069) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ilKa1-00084Y-Ax for help-guix@gnu.org; Sat, 28 Dec 2019 17:29:05 -0500 Received: by mail-wr1-x42f.google.com with SMTP id z3so29516825wru.3 for ; Sat, 28 Dec 2019 14:29:04 -0800 (PST) List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: help-guix@gnu.org I made a package which is basically a clone of the "hello" package example. (use-modules (guix packages) (guix download) (guix build-system gnu) (guix licenses)) (define-public deadbeef (package (name "deadbeef") (version "1.8.2") (source (origin (method url-fetch) (uri (string-append "https://github.com/DeaDBeeF-Player/deadbeef/archive/" version ".tar.gz")) (sha256 (base32 "1wsx62gi1bfd9rx5br2gprq4q3sfp7iqj1inxhhiqjasbm85vg50")))) (build-system gnu-build-system) (synopsis "A music player for *nix-like systems and OS X") (description "GNU Hello prints the message \"Hello, world!\" and then exits. It serves as an example of standard GNU coding practices. As such, it supports command-line arguments, multiple languages, and so on.") (home-page "https://deadbeef.sourceforge.io/") (license gpl2))) I added it to a channel, and added the channel, then ran guix pull. I got this error: (repl-version 0 0) (exception misc-error (value #f) (value "~A ~S") (value ("no code for module" (deadbeef))) (value #f)) Any idea what the problem is?