blob: bd906564a69af418e1bc6e484b06101344c6b92f (
plain) (
tree)
|
|
(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 "3c4e5879b47ed18838352e567cd26beed9361acc")
(source (origin
(method url-fetch)
(uri (string-append
"https://git.euandreh.xyz/remembering/snapshot/remembering-"
version
".tar.gz"))
(sha256
(base32
"0zavmx3b57yqdnvxr0labyl5xp7vgfs5h76qviicmvv8gy8dywmh"))))
(build-system gnu-build-system)
(arguments `(#:make-flags (list (string-append "CC=" ,(cc-for-target)))))
(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.0")
(source (origin
(method url-fetch)
(uri (string-append
"https://git.euandreh.xyz/remembering/snapshot/remembering-"
version
".tar.gz"))
(sha256
(base32
"04jnlc7i7f209wj33xyz6sjwqjhcry3s9mdgfksr3bxmxwyh78rc"))))
(build-system gnu-build-system)
(arguments `(#:make-flags (list (string-append "CC=" ,(cc-for-target)))))
(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 "a62d3425d91bb65ab883d8487fc73431a22487d4")
(source (origin
(method url-fetch)
(uri (string-append
"https://git.euandreh.xyz/autoqemu/snapshot/autoqemu-"
version
".tar.gz"))
(sha256
(base32
"02lhhylifzkkypyl0276258y911alh3qi34jmzw2rgkydnb9abca"))))
(build-system gnu-build-system)
(arguments `(#:make-flags (list (string-append "CC=" ,(cc-for-target)))))
(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 "db1527a0d72471d702e0ec4609ce67ef7df73b41")
(source (origin
(method url-fetch)
(uri (string-append
"https://git.euandreh.xyz/fallible/snapshot/fallible-"
version
".tar.gz"))
(sha256
(base32
"1vycmrrzfsabpzhlh70mg6mk53xw4nvrqzgyp9ppc1sl85xm3sgb"))))
(build-system gnu-build-system)
(inputs
`(("valgrind" ,(specification->package "valgrind"))))
(arguments `(#:make-flags (list (string-append "CC=" ,(cc-for-target)))))
(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.2.0")
(source (origin
(method url-fetch)
(uri (string-append
"https://git.euandreh.xyz/fallible/snapshot/fallible-"
version
".tar.gz"))
(sha256
(base32
"0i1b7xbrhgfivjwrd2g6p4fg34v8lzfi297d6qsjwvcmdhsaq7k6"))))
(build-system gnu-build-system)
(inputs
`(("valgrind" ,(specification->package "valgrind"))))
(arguments `(#:make-flags (list (string-append "CC=" ,(cc-for-target)))))
(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
fallible-latest
fallible)
|