GNU bug report logs -
#67902
[PATCH 00/95] PHP package chain.
Previous Next
Full log
View this message in rfc822 format
* gnu/packages/php-xyz.scm (php-doctrine-annotations): New variable.
Change-Id: Ifd8f2f247f94b47833e6ef8b80788f3a3e9dcca4
---
gnu/packages/php-xyz.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/php-xyz.scm b/gnu/packages/php-xyz.scm
index 03f99b6fe7..0b273fabaf 100644
--- a/gnu/packages/php-xyz.scm
+++ b/gnu/packages/php-xyz.scm
@@ -2441,3 +2441,32 @@ (define-public php-doctrine-cache
(home-page "https://www.doctrine-project.org/projects/cache")
(license license:expat)))
+;; This package is placed here because it needs to be defined after
+;; php-symfony-cache due to package inheritance.
+(define-public php-doctrine-annotations
+ (package
+ (name "php-doctrine-annotations")
+ (version "2.0.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/doctrine/annotations")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "04hsykqcigvmv6rvwjay5scvjji6rcqzwdw9clzfa3xx50mbz38n"))))
+ (build-system composer-build-system)
+ (inputs
+ (list php-doctrine-lexer php-psr-cache))
+ (native-inputs
+ (list php-phpunit-phpunit
+ (package/inherit php-symfony-cache
+ (arguments '(#:tests? #f))
+ (native-inputs '()))))
+ (synopsis "Docblock PHP Annotations Parser")
+ (description
+ "This package provides a Docblock PHP Annotations Parser.")
+ (home-page "https://www.doctrine-project.org/projects/annotations")
+ (license license:expat)))
+
--
2.46.0
This bug report was last modified 240 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.