summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRaito Bezarius <masterancpp@gmail.com>2023-05-24 17:45:02 +0200
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2023-05-26 12:23:48 +0000
commit43e777fc546f79dbfdf8a863bdd378be49c7b7cc (patch)
tree943c968f3d84a078f7a6c006e096e33f35b6c1ed /pkgs
parent048b207b83155312c7d818939b0a6616bb931a14 (diff)
python3Packages.guestfs: platforms are the ones libguestfs supports
This ensures the proper propagation for `lib.meta.availableOn` to work fine.

(cherry picked from commit 0cde352ef1e6442a825a8e7a0c1d266349bb3d5d)
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/guestfs/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/guestfs/default.nix b/pkgs/development/python-modules/guestfs/default.nix
index 0f1d2ddf05cc3..68401e9ea4d97 100644
--- a/pkgs/development/python-modules/guestfs/default.nix
+++ b/pkgs/development/python-modules/guestfs/default.nix
@@ -20,5 +20,6 @@ buildPythonPackage rec {
     description = "Use libguestfs from Python";
     license = licenses.lgpl2Plus;
     maintainers = with maintainers; [ grahamc ];
+    inherit (libguestfs.meta) platforms;
   };
 }