Merge pull request #232275 from erdnaxe/vdo-platforms

vdo: use upstream platforms
This commit is contained in:
Ryan Lahfa 2023-05-18 22:00:03 +02:00 committed by GitHub
commit 783a21df34
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ];
};