summaryrefslogtreecommitdiff
path: root/packages/komodo/doom-meta.scm
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2024-03-24 04:05:52 +0100
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2024-03-24 04:05:52 +0100
commit4f8c7da799103c28ad5d4cc914ed413e651adfaa (patch)
tree7fbaccd34567034d3ea307ee42547f859ebcf710 /packages/komodo/doom-meta.scm
parent779edeb2ada193fc33873fb5999ff1af087a93a6 (diff)
doom-meta: change to copy-build-system: fixes compilation error in komodo-wallet
Diffstat (limited to 'packages/komodo/doom-meta.scm')
-rw-r--r--packages/komodo/doom-meta.scm18
1 files changed, 9 insertions, 9 deletions
diff --git a/packages/komodo/doom-meta.scm b/packages/komodo/doom-meta.scm
index 0afeb21..5d34d80 100644
--- a/packages/komodo/doom-meta.scm
+++ b/packages/komodo/doom-meta.scm
@@ -1,38 +1,38 @@
(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 build-system copy)
+ #:use-module (guix git-download)
#:use-module ((guix licenses)
#:prefix license:)
#:use-module (guix packages))
-(define doom-meta-version "1.0.1")
+(define doom-meta-version "master")
(define doom-meta-delete-null-targets
'(modify-phases %standard-phases
- (delete 'check)
(delete 'install)))
(define doom-meta-hash
- (content-hash "08zmdgqkf0gp2vc73fzf35far5v67l4mhlr577fv6hv22v0kgjjj"))
+ (content-hash "1ib9dzq74kna4sfnf1h3g0zkgzr1fbgv5awyqx82wm5biz4vn717"))
(define doom-meta-arguments
- (list #:phases doom-meta-delete-null-targets))
+ (list #:install-plan '(list (list "../source" "."))))
(define doom-meta-native-inputs
(list unzip))
(define doom-meta-origin
- (origin (uri "https://github.com/KomodoPlatform/meta/archive/master.zip")
- (method url-fetch)
+ (origin (uri (git-reference (url "https://github.com/KomodoPlatform/meta.git")
+ (commit doom-meta-version)))
+ (method git-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)
+ (build-system copy-build-system)
(arguments doom-meta-arguments)
(native-inputs doom-meta-native-inputs)
(synopsis "Just a few metaprogramming utilities in C++")