summary refs log tree commit diff
path: root/pkgs/os-specific/linux/vdo
diff options
context:
space:
mode:
authorAlexandre Iooss <erdnaxe@crans.org>2023-05-16 19:22:49 +0200
committerAlexandre Iooss <erdnaxe@crans.org>2023-05-18 08:32:05 +0200
commit6d9bf329cbc9d5aa338c7e7ea5b201a096f53794 (patch)
tree841c5515f207b92cb47136d7a5dc0625564cd12f /pkgs/os-specific/linux/vdo
parent7445d27491f1b02baa3af353803c3a1abbebd066 (diff)
downloadnixpkgs-6d9bf329cbc9d5aa338c7e7ea5b201a096f53794.tar
nixpkgs-6d9bf329cbc9d5aa338c7e7ea5b201a096f53794.tar.gz
nixpkgs-6d9bf329cbc9d5aa338c7e7ea5b201a096f53794.tar.bz2
nixpkgs-6d9bf329cbc9d5aa338c7e7ea5b201a096f53794.tar.lz
nixpkgs-6d9bf329cbc9d5aa338c7e7ea5b201a096f53794.tar.xz
nixpkgs-6d9bf329cbc9d5aa338c7e7ea5b201a096f53794.tar.zst
nixpkgs-6d9bf329cbc9d5aa338c7e7ea5b201a096f53794.zip
vdo: use upstream platforms
Diffstat (limited to 'pkgs/os-specific/linux/vdo')
-rw-r--r--pkgs/os-specific/linux/vdo/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/os-specific/linux/vdo/default.nix b/pkgs/os-specific/linux/vdo/default.nix
index ec953d25ec1..669f67e09f3 100644
--- a/pkgs/os-specific/linux/vdo/default.nix
+++ b/pkgs/os-specific/linux/vdo/default.nix
@@ -57,7 +57,8 @@ stdenv.mkDerivation rec {
   meta = with lib; {
     homepage = "https://github.com/dm-vdo/vdo";
     description = "A set of userspace tools for managing pools of deduplicated and/or compressed block storage";
-    platforms = platforms.linux;
+    # platforms are defined in https://github.com/dm-vdo/vdo/blob/master/utils/uds/atomicDefs.h
+    platforms = [ "x86_64-linux" "aarch64-linux" "s390-linux" "powerpc64-linux" "powerpc64le-linux" ];
     license = with licenses; [ gpl2Plus ];
     maintainers = with maintainers; [ ajs124 ];
   };