blob: 0afeb2126e4761b46539ea0fd456ac6967ec3fab (
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
|
(define-module (doom-meta)
#:use-module (gnu packages compression)
#:use-module (guix build utils)
#:use-module (guix build-system cmake)
#:use-module (guix download)
#:use-module ((guix licenses)
#:prefix license:)
#:use-module (guix packages))
(define doom-meta-version "1.0.1")
(define doom-meta-delete-null-targets
'(modify-phases %standard-phases
(delete 'check)
(delete 'install)))
(define doom-meta-hash
(content-hash "08zmdgqkf0gp2vc73fzf35far5v67l4mhlr577fv6hv22v0kgjjj"))
(define doom-meta-arguments
(list #:phases doom-meta-delete-null-targets))
(define doom-meta-native-inputs
(list unzip))
(define doom-meta-origin
(origin (uri "https://github.com/KomodoPlatform/meta/archive/master.zip")
(method url-fetch)
(hash doom-meta-hash)))
(define-public doom-meta
(package (name "doom-meta")
(version doom-meta-version)
(source doom-meta-origin)
(build-system cmake-build-system)
(arguments doom-meta-arguments)
(native-inputs doom-meta-native-inputs)
(synopsis "Just a few metaprogramming utilities in C++")
(description "Just a few metaprogramming utilities in C++")
(license license:expat)
(home-page "https://github.com/doom/meta")))
|