diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2025-03-16 22:46:57 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2025-03-16 22:46:57 +0100 |
commit | 6cb6c1e090f43d3cdd46b9697f23d50ec547da60 (patch) | |
tree | f536d085666fbca5ddf5d511c4d266d1ffd3928b /packages/komodo/doom-meta.scm | |
parent | a5a7e233587d146d949fdf88d29f77712b32dfe8 (diff) |
export komodo package to sovereign channel
Diffstat (limited to 'packages/komodo/doom-meta.scm')
-rw-r--r-- | packages/komodo/doom-meta.scm | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/packages/komodo/doom-meta.scm b/packages/komodo/doom-meta.scm deleted file mode 100644 index ce9c32d..0000000 --- a/packages/komodo/doom-meta.scm +++ /dev/null @@ -1,41 +0,0 @@ -(define-module (packages komodo doom-meta) - #:use-module (gnu packages compression) - #:use-module (guix build utils) - #: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 "master") - -(define doom-meta-delete-null-targets - '(modify-phases %standard-phases - (delete 'install))) - -(define doom-meta-hash - (content-hash "1ib9dzq74kna4sfnf1h3g0zkgzr1fbgv5awyqx82wm5biz4vn717")) - -(define doom-meta-arguments - (list #:install-plan '(list (list "../source" ".")))) - -(define doom-meta-native-inputs - (list unzip)) - -(define doom-meta-origin - (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 copy-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"))) |