blob: 69183f3066004a310c7173a1114af586e9cf8acd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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)))
|