diff options
author | Brice Waegeneire <brice@waegenei.re> | 2020-05-14 00:25:40 +0200 |
---|---|---|
committer | Guix Patches Tester <> | 2020-05-13 23:27:22 +0100 |
commit | 32989ad9e4f7062aeed83f2d29b8748515b45cbb (patch) | |
tree | b99823004e5eca5745ecb743e8dd7122b7a215e8 | |
parent | 2d2c5bbf8887d24d93cc13250a24e87b0f405aad (diff) | |
download | patches-32989ad9e4f7062aeed83f2d29b8748515b45cbb.tar patches-32989ad9e4f7062aeed83f2d29b8748515b45cbb.tar.gz |
gnu: libblockdev: Appease guix lint.
* gnu/packages/disk.scm (libblockdev)[inputs]: Move
'gobject-introspection' to ...
[native-inputs]: ... here.
-rw-r--r-- | gnu/packages/disk.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/disk.scm b/gnu/packages/disk.scm index 5c82ccd577..e410e29e88 100644 --- a/gnu/packages/disk.scm +++ b/gnu/packages/disk.scm @@ -803,7 +803,8 @@ to create devices with respective mappings for the ATARAID sets discovered.") "15c7g2gbkahmy8c6677pvbvblan5h8jxcqqmn6nlvqwqynq2mkjm")))) (build-system gnu-build-system) (native-inputs - `(("pkg-config" ,pkg-config) + `(("gobject-introspection" ,gobject-introspection) + ("pkg-config" ,pkg-config) ("python" ,python-wrapper) ("util-linux" ,util-linux))) (inputs @@ -813,7 +814,6 @@ to create devices with respective mappings for the ATARAID sets discovered.") ("dmraid" ,dmraid) ("eudev" ,eudev) ("glib" ,glib) - ("gobject-introspection" ,gobject-introspection) ("kmod" ,kmod) ("libbytesize" ,libbytesize) ("libyaml" ,libyaml) |