help-guix
[Top][All Lists]
Advanced

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

Guix can't build my dummy package definition


From: Jérémy Korwin-Zmijowski
Subject: Guix can't build my dummy package definition
Date: Sun, 01 Mar 2020 13:58:27 +0100
User-agent: K-9 Mail for Android

Hey Guixters !

I am experimenting one way to learn how to use Guix for packaging. 

I've a package dummy definition in /tmp/def.scm:

(use-modules 
  (guix packages)
  (guix build-system emacs)
  (guix licenses)
  (guix git-download)) 

(define-public ac-geiser 
  (package 
    (name "")
    (version "") 
    (source
      (origin
        (uri
          (git-reference (url "") 
          (commit ""))) 
        (method git-fetch) 
        (sha256 (base32 ""))))
    (build-system emacs-build-system)
    (synopsis "")
    (description "") 
    (license bsd-3)
    (home-page "")))

Then when I do :

./pre-inst-env guix build -f /tmp/def.scm

I get :

guix build: error: #<unspecified>: not something we can build

What is Guix trying to tell yo me ? I have no clue... 

Does anybody have one ?

Cheers
-- 
Envoyé de mon appareil Android avec Courriel K-9 Mail. Veuillez excuser ma 
brièveté.


reply via email to

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