mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-03-13 03:09:37 +01:00
guix: Update signapple
This commit is contained in:
parent
e8b3c44da6
commit
710d5b5149
2 changed files with 8 additions and 6 deletions
|
@ -83,7 +83,7 @@ mkdir -p "$DISTSRC"
|
||||||
;;
|
;;
|
||||||
*darwin*)
|
*darwin*)
|
||||||
# Apply detached codesignatures to dist/ (in-place)
|
# Apply detached codesignatures to dist/ (in-place)
|
||||||
signapple apply dist/Bitcoin-Qt.app codesignatures/osx/dist
|
signapple apply dist/Bitcoin-Qt.app codesignatures/osx/dist/Bitcoin-Qt.app
|
||||||
|
|
||||||
# Make a .zip from dist/
|
# Make a .zip from dist/
|
||||||
cd dist/
|
cd dist/
|
||||||
|
|
|
@ -15,13 +15,14 @@
|
||||||
(gnu packages mingw)
|
(gnu packages mingw)
|
||||||
(gnu packages pkg-config)
|
(gnu packages pkg-config)
|
||||||
((gnu packages python) #:select (python-minimal))
|
((gnu packages python) #:select (python-minimal))
|
||||||
((gnu packages python-build) #:select (python-tomli))
|
((gnu packages python-build) #:select (python-tomli python-poetry-core))
|
||||||
((gnu packages python-crypto) #:select (python-asn1crypto))
|
((gnu packages python-crypto) #:select (python-asn1crypto))
|
||||||
((gnu packages tls) #:select (openssl))
|
((gnu packages tls) #:select (openssl))
|
||||||
((gnu packages version-control) #:select (git-minimal))
|
((gnu packages version-control) #:select (git-minimal))
|
||||||
(guix build-system cmake)
|
(guix build-system cmake)
|
||||||
(guix build-system gnu)
|
(guix build-system gnu)
|
||||||
(guix build-system python)
|
(guix build-system python)
|
||||||
|
(guix build-system pyproject)
|
||||||
(guix build-system trivial)
|
(guix build-system trivial)
|
||||||
(guix download)
|
(guix download)
|
||||||
(guix gexp)
|
(guix gexp)
|
||||||
|
@ -381,10 +382,10 @@ specific moment in time, whitelisting and revocation checks.")
|
||||||
(license license:expat))))
|
(license license:expat))))
|
||||||
|
|
||||||
(define-public python-signapple
|
(define-public python-signapple
|
||||||
(let ((commit "62155712e7417aba07565c9780a80e452823ae6a"))
|
(let ((commit "85bfcecc33d2773bc09bc318cec0614af2c8e287"))
|
||||||
(package
|
(package
|
||||||
(name "python-signapple")
|
(name "python-signapple")
|
||||||
(version (git-version "0.1" "1" commit))
|
(version (git-version "0.2.0" "1" commit))
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -394,13 +395,14 @@ specific moment in time, whitelisting and revocation checks.")
|
||||||
(file-name (git-file-name name commit))
|
(file-name (git-file-name name commit))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1nm6rm4h4m7kbq729si4cm8rzild62mk4ni8xr5zja7l33fhv3gb"))))
|
"17yqjll8nw83q6dhgqhkl7w502z5vy9sln8m6mlx0f1c10isg8yg"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-asn1crypto
|
(list python-asn1crypto
|
||||||
python-oscrypto
|
python-oscrypto
|
||||||
python-certvalidator
|
python-certvalidator
|
||||||
python-elfesteem))
|
python-elfesteem))
|
||||||
|
(native-inputs (list python-poetry-core))
|
||||||
;; There are no tests, but attempting to run python setup.py test leads to
|
;; There are no tests, but attempting to run python setup.py test leads to
|
||||||
;; problems, just disable the test
|
;; problems, just disable the test
|
||||||
(arguments '(#:tests? #f))
|
(arguments '(#:tests? #f))
|
||||||
|
|
Loading…
Add table
Reference in a new issue