blob: bfe434d8a10040c432cecefe9c9dc1a88bcdca33 (
about) (
plain)
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
41
42
43
44
45
46
47
48
49
50
51
|
(define-module (komodo-vcpkg-ports)
#:use-module (guix build-system copy)
#:use-module (guix git-download)
#:use-module ((guix licenses)
#:prefix license:)
#:use-module (guix packages))
;; DATA LAYER
(define hash
(base32 "0nw78mmncjbgl7cjpbcy9wkch7hlqaavr03n9ls6nkjacx3klyy6"))
(define home-page
"https://github.com/KomodoPlatform/vcpkg-custom-ports/tree/main")
(define name
"komodo-vcpkg-ports")
(define synopsis
"Komodo VCPKG port files")
(define url
"https://github.com/KomodoPlatform/vcpkg-custom-ports.git")
(define version
"main")
;; ABSTRACTION LAYER -1
(define uri
(git-reference (url url)
(commit version)))
;; ABSTRACTION LAYER -0
(define source
(origin (uri uri)
(method git-fetch)
(sha256 hash)))
;; SURFACE LAYER
(define-public komodo-vcpkg-ports
(package (name name)
(version version)
(source source)
(build-system copy-build-system)
(synopsis synopsis)
(description synopsis)
(license license:expat)
(home-page home-page)))
|