diff options
author | Manolis Ragkousis <manolis837@gmail.com> | 2016-04-27 23:33:56 +0300 |
---|---|---|
committer | Manolis Ragkousis <manolis837@gmail.com> | 2016-05-04 17:18:57 +0300 |
commit | d46123aade7bc5226004eb46ee1084dc84f2b30a (patch) | |
tree | 890ba4958d75e10ec3a7aa8ff71b2fecc7026063 /gnu/packages/linux.scm | |
parent | b5e0c870cb2c4a6864455308c74684fd024f101f (diff) | |
download | patches-d46123aade7bc5226004eb46ee1084dc84f2b30a.tar patches-d46123aade7bc5226004eb46ee1084dc84f2b30a.tar.gz |
gnu: procps: Make procps build on non Linux systems.
* gnu/packages/patches/procps-non-linux.patch.patch: New patch.
* gnu/packages/linux.scm (procps)[source]: Use it.
* gnu/local.mk (dist_patch_DATA): Add it.
Diffstat (limited to 'gnu/packages/linux.scm')
-rw-r--r-- | gnu/packages/linux.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 5f4b041694..7a4f496a3e 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -535,7 +535,9 @@ block devices, UUIDs, TTYs, and many other tools.") "procps-ng-" version ".tar.xz")) (sha256 (base32 - "1va4n0mpsq327ca9dqp4hnrpgs6821rp0f2m0jyc1bfjl9lk2jg9")))) + "1va4n0mpsq327ca9dqp4hnrpgs6821rp0f2m0jyc1bfjl9lk2jg9")) + (patches + (list (search-patch "procps-non-linux.patch"))))) (build-system gnu-build-system) (arguments '(#:modules ((guix build utils) |