Merge pull request #225776 from Brawl345/cdecrypt-darwin

cdecrypt: add darwin to supported platforms
This commit is contained in:
Weijia Wang 2023-04-13 12:47:32 +03:00 committed by GitHub
commit 4c0c4d4f76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,6 +24,6 @@ stdenv.mkDerivation rec {
changelog = "https://github.com/VitaSmith/cdecrypt/releases/tag/v${version}";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ hughobrien ];
platforms = platforms.linux;
platforms = platforms.linux ++ platforms.darwin;
};
}