summaryrefslogtreecommitdiffstats
path: root/yousaythis.scm
diff options
context:
space:
mode:
authormsglm <msglm@techchud.xyz>2023-07-29 04:58:18 -0500
committermsglm <msglm@techchud.xyz>2023-07-29 04:58:18 -0500
commitaf56254f2f9d0ffeaea62a0182ff742ceee3320e (patch)
tree16d50d8eeec0bf90a06860b910574cd25e4c1c28 /yousaythis.scm
parentd98fcf84139fe27cde6c5f9ab5fdc1ffb388db17 (diff)
downloadguix-msglm-af56254f2f9d0ffeaea62a0182ff742ceee3320e.tar.gz
guix-msglm-af56254f2f9d0ffeaea62a0182ff742ceee3320e.tar.bz2
guix-msglm-af56254f2f9d0ffeaea62a0182ff742ceee3320e.zip
yousaythis added
Diffstat (limited to 'yousaythis.scm')
-rw-r--r--yousaythis.scm37
1 files changed, 37 insertions, 0 deletions
diff --git a/yousaythis.scm b/yousaythis.scm
new file mode 100644
index 0000000..69183f3
--- /dev/null
+++ b/yousaythis.scm
@@ -0,0 +1,37 @@
+(define-module (yousaythis)
+ #:use-module (guix licenses)
+ #:use-module (guix packages)
+ #:use-module (guix build-system copy)
+ #:use-module (guix download)
+ #:use-module (guix git-download)
+ #:use-module (gnu packages video)
+ #:use-module (gnu packages imagemagick)
+ )
+
+(define-public yousaythis
+ (package
+ (name "yousaythis")
+ (version "1.0.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://git.techchud.xyz/yousaythis")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1z4rc6d03fnfg0n1r2i11xrx1p9905q3pbrbwbq9285pn28qp4xz"))))
+ (build-system copy-build-system)
+ (inputs
+ (list
+ ffmpeg
+ imagemagick
+ ))
+ (arguments
+ '(#:install-plan '(("yousaythis" "/bin/yousaythis"))))
+ (synopsis "A program for creating quote images")
+ (description
+ "A program for creating quote images"
+ )
+ (home-page "https://git.techchud.xyz/yousaythis/")
+ (license agpl3)))