Merge pull request #196350 from viraptor/rpm-darwin

rpm: remove darwin from supported platforms
This commit is contained in:
Jörg Thalheim 2022-10-17 08:38:17 +02:00 committed by GitHub
commit 6179b27dc7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -71,6 +71,6 @@ stdenv.mkDerivation rec {
license = with licenses; [ gpl2Plus lgpl21Plus ];
description = "The RPM Package Manager";
maintainers = with maintainers; [ copumpkin ];
platforms = platforms.linux ++ platforms.darwin;
platforms = platforms.linux;
};
}