aboutsummaryrefslogblamecommitdiff
path: root/src/xyz/euandreh/packages.scm
blob: 86b75f2609acaf0ddea6f75f4856da09a2bc5628 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                      
                                                  


                              

                                       


                        
                                                        


                                 
                                                              



                               
                                                                          

                                   
                                                         


                                                
                                                  
                                                          
                                          

                              
     
           
(define-module (xyz euandreh packages)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix gexp)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu))

(define-public td-latest
  (package
    (name "td-latest")
    (version "7a1d07c1051ff48f17c915f99e20b629ed0a6a70")
    (source (origin
              (method url-fetch)
              (uri (string-append
                    "https://euandreh.xyz/td.git/snapshot/td-"
                    version
                    ".tar.gz"))
              (sha256
               (base32
                "1ixcfkalhhnxn7c4dshw42gd5bnwxb4c1dxkll50qyf9vdasqms8"))))
    (build-system gnu-build-system)
    (arguments `(#:make-flags
                 (list (string-append "PREFIX=" %output))
                 #:phases
                 (modify-phases %standard-phases
                   (delete 'configure))))
    (synopsis (file-append source "/description"))
    (description (file-append source "/long-description"))
    (home-page "https://euandreh.xyz/td/")
    (license license:agpl3+)))

(list
 td-latest)