From e3521e9d8fc539742d66bae48914f47ca160975d Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Thu, 21 Mar 2019 10:17:42 +0100 Subject: [PATCH] musly: fix platforms Co-Authored-By: ggPeti --- pkgs/applications/audio/musly/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/audio/musly/default.nix b/pkgs/applications/audio/musly/default.nix index cb61214b51d8..47370d4bc2f7 100644 --- a/pkgs/applications/audio/musly/default.nix +++ b/pkgs/applications/audio/musly/default.nix @@ -28,6 +28,6 @@ stdenv.mkDerivation rec { ''; license = licenses.mpl20; maintainers = with maintainers; [ ggpeti ]; - platforms = with platforms; [ darwin linux ]; + platforms = with platforms; darwin ++ linux; }; }