dragon-drop: add linux platform to meta

+4 -3
+4 -3
pkgs/by-name/dr/dragon-drop/package.nix
··· 26 26 ln -s $out/bin/dragon-drop $out/bin/xdragon 27 27 ''; 28 28 29 - meta = with lib; { 29 + meta = { 30 30 description = "Simple drag-and-drop source/sink for X or Wayland (called dragon in upstream)"; 31 31 homepage = "https://github.com/mwh/dragon"; 32 - license = licenses.gpl3Plus; 33 - maintainers = with maintainers; [ 32 + license = lib.licenses.gpl3Plus; 33 + maintainers = with lib.maintainers; [ 34 34 das_j 35 35 taliyahwebb 36 36 ]; 37 37 mainProgram = "dragon-drop"; 38 + platforms = lib.platforms.linux; 38 39 }; 39 40 })