diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-04-13 05:48:18 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-04-13 06:56:55 +0200 |
commit | 5687fdb7c0882aa7c38d6d306ec3c14034a7bee3 (patch) | |
tree | 34822c371b173850a8840783bd2addbc1f351df6 /gnu | |
parent | 6729488f59c402fef575629d2f9490480995bd64 (diff) | |
download | guix-5687fdb7c0882aa7c38d6d306ec3c14034a7bee3.tar.gz |
gnu: e2fsprogs: Update to 1.45.6.
* gnu/packages/linux.scm (e2fsprogs): Update to 1.45.6. [source]: Hard-code NAME.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/linux.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 0be50c11e0..3bad3e6f2b 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -1505,16 +1505,16 @@ slabtop, and skill.") (define-public e2fsprogs (package (name "e2fsprogs") - (version "1.45.5") + (version "1.45.6") (source (origin (method url-fetch) (uri (string-append "mirror://kernel.org/linux/kernel/people/tytso/" - name "/v" version "/" - name "-" version ".tar.xz")) + "e2fsprogs/v" version "/" + "e2fsprogs-" version ".tar.xz")) (sha256 (base32 - "1pmf8inp736l587rqq7qsd8bv0mmg5cwrivxg5p5awqgv70crypr")))) + "0mj2yizwygs7xww8jfy5mxjn8ww4pvc0b1hg1p2vsnirailsx9zz")))) (build-system gnu-build-system) (inputs `(("util-linux" ,util-linux))) (native-inputs `(("pkg-config" ,pkg-config) |