-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscp-scraper-package.scm
34 lines (32 loc) · 958 Bytes
/
scp-scraper-package.scm
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
(use-modules (guix packages)
(guix gexp)
((guix licenses) #:prefix license:)
(guix build-system meson)
(gnu packages pkg-config)
(gnu packages cmake)
(gnu packages cpp)
(gnu packages boost)
(gnu packages curl)
(gnu packages tls)
(gnu packages certs))
(package
(name "ScpScraper")
(version "0.0")
(inputs
`(("json-modern-cxx" ,json-modern-cxx)
("boost" ,boost)
("curl" ,curl)
("curlpp" ,curlpp)
("openssl" ,openssl)))
(native-inputs
`(("pkg-config" ,pkg-config)
("cmake" ,cmake)))
(propagated-inputs
`(("nss-certs" ,nss-certs)))
(source (local-file "./src/ScpScraper" #:recursive? #t))
(build-system meson-build-system)
(synopsis "ScpScraper: Scraper utility for the SCP-Wiki")
(description
"Scraper Utility for the SCP-Wiki that collects and packages all information for importation using the ScpArchive program")
(home-page "https://github.com/danielbatterystapler/SCP_Conversion_Project")
(license license:gpl3))