blob: 8a112093e9d57fc2d6c7fea5695b5c4be4828a09 (
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
|
(define-module (antara-gaming-sdk)
#:use-module (guix build-system cmake)
#:use-module (guix git-download)
#:use-module ((guix licenses)
#:prefix license:)
#:use-module (guix packages))
;;; Modal Definitions
(define antara-gaming-sdk-github
"https://github.com/KomodoPlatform/antara-gaming-sdk")
(define antara-gaming-sdk-hash
(content-hash "12jqg0y92y86lm0516k06x81zrargfgvby10kxmhj1vaxkf71ig6"))
(define antara-gaming-sdk-version "1.1.0-alpha")
;;; Origin Definitions
(define antara-gaming-sdk-git-reference
(git-reference (url antara-gaming-sdk-github)
(commit antara-gaming-sdk-version)))
;;; Package Definitions
(define antara-gaming-sdk-origin
(origin (uri antara-gaming-sdk-git-reference)
(method git-fetch)
(hash antara-gaming-sdk-hash)))
(define-public antara-gaming-sdk
(package (name "antaga-gaming-sdk")
(version antara-gaming-sdk-version)
(source antara-gaming-sdk-origin)
(build-system cmake-build-system)
(synopsis "Komodo Gaming Software Development Kit")
(description "Komodo Gaming Software Development Kit")
(license license:cc-by-sa4.0)
(home-page antara-gaming-sdk-github)))
|