From b6dd7bac18607424cbf9089d4144b2409acc9f0e Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Tue, 28 Oct 2025 13:39:26 +0000 Subject: [PATCH] gnu: shrinkwrap: Sort variable. * gnu/packages/python-xyz.scm (shrinkwrap): Sort variable alphabetically. Change-Id: I000b09dfad1f67ea62c4f78b0f4f6e9b7b8f428c --- gnu/packages/python-xyz.scm | 55 +++++++++++++++++++------------------ 1 file changed, 28 insertions(+), 27 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 4ee3b5bb0f188e1b1640291a45bdaba5a64b87e1..b1a32a2327e3fc2561a2cfea4845cd9e47145a47 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -36186,33 +36186,6 @@ and abstract ELF, PE and MachO formats.") Storage}.") (license license:lgpl3+))) -(define-public shrinkwrap - (package - (name "shrinkwrap") - (version "0.1.0") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/fzakaria/shrinkwrap") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1f3qrygj16y767q2c7pn9j6m95ggcmj9s5cx9v92ygygly4mr3jp")))) - (build-system pyproject-build-system) - (native-inputs - (list python-click - python-poetry-core - python-pypa-build - python-pytest)) - (inputs (list python-lief python-sh)) - (home-page "https://github.com/fzakaria/shrinkwrap") - (synopsis "Emboss needed dependencies on the top level executable") - (description - "@code{shrinkwrap} is a tool which will discover all transitive dynamic -shared objects, and lift them up to the executable referenced by absolute -path.") - (license license:expat))) - (define-public python-pymonad (package (name "python-pymonad") @@ -40901,6 +40874,34 @@ you do not want to store entirely on disk or on memory.") (package-arguments python-pycparser))))))) (package-with-python2 base))) +(define-public shrinkwrap + (package + (name "shrinkwrap") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fzakaria/shrinkwrap") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1f3qrygj16y767q2c7pn9j6m95ggcmj9s5cx9v92ygygly4mr3jp")))) + (build-system pyproject-build-system) + (native-inputs + (list python-click + python-poetry-core + python-pypa-build + python-pytest)) + (inputs (list python-lief python-sh)) + (home-page "https://github.com/fzakaria/shrinkwrap") + (synopsis "Emboss needed dependencies on the top level executable") + (description + "@code{shrinkwrap} is a tool which will discover all transitive dynamic +shared objects, and lift them up to the executable referenced by absolute +path.") + (license license:expat))) + (define-public staticsite (package (name "staticsite")