diff options
author | Ludovic Courtès <ludo@gnu.org> | 2022-06-08 14:46:24 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-06-08 14:46:24 +0200 |
commit | 8c3e9da13a3c92a7db308db8c0d81cb474ad7799 (patch) | |
tree | 88d06952aa5cc3a9c4991d9c43eb7950ff174fe1 /gnu/packages/ada.scm | |
parent | 5439c04ebdb7b6405f5ea2446b375f1d155a8d95 (diff) | |
parent | 0c5299200ffcd16370f047b7ccb187c60f30da34 (diff) |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/ada.scm')
-rw-r--r-- | gnu/packages/ada.scm | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/gnu/packages/ada.scm b/gnu/packages/ada.scm index a3bba245ec..ea3e9c365b 100644 --- a/gnu/packages/ada.scm +++ b/gnu/packages/ada.scm @@ -149,32 +149,3 @@ Ada system. Being an interpreter, it does not implement most representation clauses, and thus does not support systems programming close to the machine level.") (license license:gpl2+))) - -(define-public python2-langkit - (let ((commit "fe0bc8bf60dbd2937759810df76ac420d99fc15f") - (revision "0")) - (package - (name "python2-langkit") - (version (git-version "0.0.0" revision commit)) - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/AdaCore/langkit") - (commit commit))) - (sha256 - (base32 - "1abqgw2p8pb1pm54my5kkbbixfhc6l0bwajdv1xlzyrh31xki3wx")) - (file-name (string-append name "-" version "-checkout")))) - (build-system python-build-system) - (propagated-inputs - (list python2-docutils python2-enum34 python2-funcy python2-mako)) - (arguments - `(#:python ,python-2 - #:tests? #f)) ; Tests would requite gprbuild (Ada). - (synopsis "Semantic analysis tool generator in Python") - (description "@code{Langkit} is a tool whose purpose is to make it easy -to create syntactic and semantic analysis engines. Write a language -specification in our Python DSL and Langkit will generate for you an -Ada library with bindings for the C and Python programming languages.") - (home-page "https://github.com/AdaCore/langkit/") - (license license:gpl3+)))) ; and gcc runtime library exception |