summaryrefslogtreecommitdiffstats
path: root/stashley.scm
blob: 0a3680897e380f480be9bd2da9d2be61b1c74e2c (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
38
39
40
(define-module (stashley)
  #: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 wget)
  #:use-module (gnu packages python-xyz)
  )

(define-public stashley
  (package
    (name "stashley")
    (version "1.0.2")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                     (url "https://git.techchud.xyz/stashley")
                     (commit (string-append "v" version))))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "1spvnshhxbrwh0v7vlc8v37p7dkm4521fab0ic4kgsdn5jxqca9f"))))
    (build-system copy-build-system)
    (inputs
      (list 
        yt-dlp
        gallery-dl
        wget
        python-yq
        ))
    (arguments
      '(#:install-plan '(("stashley" "/usr/bin/stashley"))))
    (synopsis "Program using TOML files to archive personalities to IPFS")
    (description
     "Stashley is a program used for archiving personalities using
      TOML files, and if IPFS is installed, pushing them to IPFS.")
    (home-page "https://git.techchud.xyz/stashley/")
    (license agpl3)))