diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-12-26 12:29:44 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-12-26 12:29:44 +0100 |
commit | 3c45b53ec9025f4b95ec003ff99caa3e6fe506ab (patch) | |
tree | 8ffbfcf6c5c6a1d55af9eea1f48564713eb48b16 /gnu | |
parent | dedc66ef8ecc91fe753f1e6c23102bfa9d79a808 (diff) | |
download | patches-3c45b53ec9025f4b95ec003ff99caa3e6fe506ab.tar patches-3c45b53ec9025f4b95ec003ff99caa3e6fe506ab.tar.gz |
gnu: Remove squashfs-tools-next.
* gnu/packages/compression.scm (squashfs-tools-next): Remove variable.
* guix/scripts/pack.scm (squashfs-image, guix-pack): Use squashfs-tools.
* tests/pack.scm: Use squashfs-tools.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/compression.scm | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm index 02e4e324b9..cf23e88547 100644 --- a/gnu/packages/compression.scm +++ b/gnu/packages/compression.scm @@ -819,23 +819,6 @@ systems where low overhead is needed. This package allows you to create and extract such file systems.") (license license:gpl2+))) -;; We need this for building squashfs images with symlinks. -(define-public squashfs-tools-next - (let ((commit "fb33dfc32b131a1162dcf0e35bd88254ae10e265") - (revision "1")) - (package (inherit squashfs-tools) - (name "squashfs-tools-next") - (version (string-append "4.3-" revision (string-take commit 7))) - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/plougher/squashfs-tools.git") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "1x2skf8hxzfch978nzx5mh46d4hhi6gl22270hiarjszsjk3bnsx"))))))) - (define-public pigz (package (name "pigz") |