diff options
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"))) |