aboutsummaryrefslogblamecommitdiff
path: root/src/xyz/euandreh/packages.scm
blob: b769f072e313ce2e1ebdb23ee5c36cf27bab7ff5 (plain) (tree)
1
2
3
4
5
                                      
                     

                                                              
                             








                                       


                                 
                                                        


                                 


                                                                                
                     
                      
                                                                          
                                   





                                                             




                                                               
                          
          
                        
                     


                                 


                                                                                
                     

                                                                          
                                   





                                                             




                                                               
                              
          
                            
                                                        


                                 


                                                                          
                     

                                                                          
                                   





                                                             




                                                               
























                                                                          


                              
                                                        


                                 


                                                                          
                     
                      
                                                                          
                                   
           






                                                             







                                                               
                     


                                 


                                                                          
                     
                      
                                                                          
                                   
           






                                                             
                                                  
                                                          


                                                               
     


                   
               

                
(define-module (xyz euandreh packages)
  #:use-module (json)
  #:use-module ((ice-9 textual-ports) #:prefix textual-ports:)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (gnu packages)
  #:use-module (guix transformations)
  #:use-module (guix gexp)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix git-download)
  #:use-module (guix utils)
  #:use-module (guix store)
  #:use-module (guix build-system gnu))

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

(define-public remembering
  (package
    (name "remembering")
    (version "0.2.1")
    (source (origin
              (method url-fetch)
              (uri (string-append
                    "https://git.euandreh.xyz/remembering/snapshot/remembering-"
                    version
                    ".tar.gz"))
              (sha256
               (base32
                "07q38ld6xy7qsz29crp2lpg695xpiz2ravmz0crlmy4iq1l4138f"))))
    (build-system gnu-build-system)
    (arguments `(#:make-flags
                 (list (string-append "CC=" ,(cc-for-target))
                       (string-append "PREFIX=" %output))
                 #:phases
                 (modify-phases %standard-phases
                   (delete 'configure))))
    (synopsis (file-append source "/description"))
    (description (file-append source "/long-description"))
    (home-page (string-append "https://" name ".euandreh.xyz"))
    (license license:agpl3+)))

(define-public autoqemu-latest
  (package
    (name "autoqemu-latest")
    (version "5f619467601a7ff2af973c4fd80d22fe77f6123b")
    (source (origin
              (method url-fetch)
              (uri (string-append
                    "https://git.euandreh.xyz/autoqemu/snapshot/autoqemu-"
                    version
                    ".tar.gz"))
              (sha256
               (base32
                "0hw0rbf90cb13bdcxv8gqkcn4xjfyxqkn7wpdwfgygvkljv99pnh"))))
    (build-system gnu-build-system)
    (arguments `(#:make-flags
                 (list (string-append "CC=" ,(cc-for-target))
                       (string-append "PREFIX=" %output))
                 #:phases
                 (modify-phases %standard-phases
                   (delete 'configure))))
    (synopsis (file-append source "/description"))
    (description (file-append source "/long-description"))
    (home-page (string-append "https://" name ".euandreh.xyz"))
    (license license:agpl3+)))

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

(define-public fallible-latest
  (package
    (name "fallible-latest")
    (version "b8515153fa2a9b57690b12c983d12c342cbf25c9")
    (source (origin
              (method url-fetch)
              (uri (string-append
                    "https://git.euandreh.xyz/fallible/snapshot/fallible-"
                    version
                    ".tar.gz"))
              (sha256
               (base32
                "0fwylzq5rsbl3kgky9761mw0i6zmf607xyb8184g4s8k8yxx9ibi"))))
    (build-system gnu-build-system)
    (inputs
     `(("valgrind" ,(specification->package "valgrind"))))
    (arguments `(#:make-flags
                 (list (string-append "CC=" ,(cc-for-target))
                       (string-append "PREFIX=" %output))
                 #:phases
                 (modify-phases %standard-phases
                   (delete 'configure))))
    (synopsis (file-append source "/description"))
    (description (file-append source "/long-description"))
    (home-page (string-append "https://" name ".euandreh.xyz"))
    (license license:agpl3+)))

(define-public fallible
  (package
    (name "fallible")
    (version "0.3.0")
    (source (origin
              (method url-fetch)
              (uri (string-append
                    "https://git.euandreh.xyz/fallible/snapshot/fallible-"
                    version
                    ".tar.gz"))
              (sha256
               (base32
                "0nhhzk1w0yxabwigrjwhabwrbxxzvrgd3ihydcbbgi2dkabmf8v3"))))
    (build-system gnu-build-system)
    (inputs
     `(("valgrind" ,(specification->package "valgrind"))))
    (arguments `(#:make-flags
                 (list (string-append "CC=" ,(cc-for-target))
                       (string-append "PREFIX=" %output))
                 #:phases
                 (modify-phases %standard-phases
                   (delete 'configure))))
    (synopsis (file-append source "/description"))
    (description (file-append source "/long-description"))
    (home-page (string-append "https://" name ".euandreh.xyz"))
    (license license:agpl3+)))

(list
 remembering-latest
 remembering
 autoqemu-latest
 sharedc-latest
 fallible-latest
 fallible)