diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2016-08-14 11:03:50 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2016-08-15 10:42:27 +0300 |
commit | 74a3c4bb6cbbcd1ed8ac1fa862a8832731a6ac44 (patch) | |
tree | 898c444d946159ee3411967d1d9110443e1be3c1 /gnu/packages/linux.scm | |
parent | da931eee6014a4eaa59c1c513e24fa5045b5e188 (diff) | |
download | guix-74a3c4bb6cbbcd1ed8ac1fa862a8832731a6ac44.tar guix-74a3c4bb6cbbcd1ed8ac1fa862a8832731a6ac44.tar.gz |
gnu: procps: Update to 3.3.12.
* gnu/packages/linux.scm (procps): Update to 3.3.12.
[source]: Remove patch.
* gnu/packages/patches/procps-non-linux.patch: Remove file.
* gnu/local.mk (dist_patch_DATA): Remove it.
Diffstat (limited to 'gnu/packages/linux.scm')
-rw-r--r-- | gnu/packages/linux.scm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index f6352da486..56bcb3f594 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -532,16 +532,14 @@ block devices, UUIDs, TTYs, and many other tools.") (define-public procps (package (name "procps") - (version "3.3.11") + (version "3.3.12") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/procps-ng/Production/" "procps-ng-" version ".tar.xz")) (sha256 (base32 - "1va4n0mpsq327ca9dqp4hnrpgs6821rp0f2m0jyc1bfjl9lk2jg9")) - (patches - (list (search-patch "procps-non-linux.patch"))))) + "1m57w6jmry84njd5sgk5afycbglql0al80grx027kwqqcfw5mmkf")))) (build-system gnu-build-system) (arguments '(#:modules ((guix build utils) |