(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 (package (name "remembering") (version "793b782617b0667eefa938a836f24d8a5e087bb0") (source (origin (method url-fetch) (uri (string-append "https://git.euandreh.xyz/remembering/snapshot/remembering-" version ".tar.gz")) (sha256 (base32 "14gnjrzrknan1vjakqywlglz6pzhw69q2vs05bac8zyfhc9m0j80")))) (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 (package (name "autoqemu") (version "4d1a0b6314c4f6fcf31f80e608f6b03a316a7255") (source (origin (method url-fetch) (uri (string-append "https://git.euandreh.xyz/autoqemu/snapshot/autoqemu-" version ".tar.gz")) (sha256 (base32 "1ziszs481r5f03rwxf8vkgffkdbk46j3xj1qgaajsmlf3i11nl7x")))) (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 (package (name "fallible") (version "66a2ee41beaaffb9a9a6b521837c0967528845fa") (source (origin (method url-fetch) (uri (string-append "https://git.euandreh.xyz/fallible/snapshot/fallible-" version ".tar.gz")) (sha256 (base32 "0pmrn742pgvpnj51xyfaxjwz16h2kghgv5c0n8j689yyyiz6wp6s")))) (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 autoqemu fallible)