From 4f8c7da799103c28ad5d4cc914ed413e651adfaa Mon Sep 17 00:00:00 2001 From: Marek Paśnikowski Date: Sun, 24 Mar 2024 04:05:52 +0100 Subject: doom-meta: change to copy-build-system: fixes compilation error in komodo-wallet --- packages/komodo/doom-meta.scm | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'packages/komodo') 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++") -- cgit v1.2.3