Skip to content

Commit

Permalink
treewide: Fix broken desktop files and mark packages as broken
Browse files Browse the repository at this point in the history
This fixes all packages that are failed `nixpkgs-review` in NixOS#91790.
Packages that were broken prior to that PR were marked as broken.
Packages that failed because of NixOS#75729 were fixed.
  • Loading branch information
piegamesde committed Oct 15, 2020
1 parent ee81376 commit e14a359
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions pkgs/applications/misc/toggldesktop/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ buildEnv {
paths = [ desktopItem toggldesktop-icons toggldesktop-wrapped ];

meta = with lib; {
broken = true; # libtoggl is broken
description = "Client for Toggl time tracking service";
homepage = "https://github.com/toggl/toggldesktop";
license = licenses.bsd3;
Expand Down
1 change: 1 addition & 0 deletions pkgs/applications/networking/ostinato/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ stdenv.mkDerivation rec {
GenericName[it]=Generatore ed Analizzatore di pacchetti di rete
Comment[it]=Generatore ed Analizzatore di pacchetti di rete con interfaccia amichevole
'';
fileValidation = false;
};

postInstall = ''
Expand Down
1 change: 1 addition & 0 deletions pkgs/applications/networking/termius/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ stdenv.mkDerivation rec {
'';

meta = with stdenv.lib; {
broken = true;
description = "A cross-platform SSH client with cloud data sync and more";
homepage = "https://termius.com/";
downloadPage = "https://termius.com/linux/";
Expand Down
1 change: 1 addition & 0 deletions pkgs/applications/science/math/sage/sage.nix
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ stdenv.mkDerivation rec {
};

meta = with stdenv.lib; {
broken = true;
description = "Open Source Mathematics Software, free alternative to Magma, Maple, Mathematica, and Matlab";
license = licenses.gpl2;
maintainers = with maintainers; [ timokau ];
Expand Down
1 change: 1 addition & 0 deletions pkgs/games/frogatto/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ in buildEnv {
'';

meta = with stdenv.lib; {
broken = true;
homepage = "https://frogatto.com";
description = description;
license = with licenses; [ cc-by-30 unfree ];
Expand Down
1 change: 1 addition & 0 deletions pkgs/games/tdm/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ let
type = "Application";
categories = "Game;";
genericName = pname;
fileValidation = false;
};
in stdenv.mkDerivation {
name = "${pname}-${version}";
Expand Down
1 change: 1 addition & 0 deletions pkgs/games/tome2/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ let
type = "Application";
categories = "Game;RolePlaying;";
genericName = pname;
fileValidation = false;
};

in stdenv.mkDerivation {
Expand Down

0 comments on commit e14a359

Please sign in to comment.