summaryrefslogtreecommitdiff
path: root/packages/komodo/doom-meta.scm
diff options
context:
space:
mode:
Diffstat (limited to 'packages/komodo/doom-meta.scm')
-rw-r--r--packages/komodo/doom-meta.scm41
1 files changed, 41 insertions, 0 deletions
diff --git a/packages/komodo/doom-meta.scm b/packages/komodo/doom-meta.scm
new file mode 100644
index 0000000..0afeb21
--- /dev/null
+++ b/packages/komodo/doom-meta.scm
@@ -0,0 +1,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")))