Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

treewide (darwin): fix or enable darwin build for many packages (7) #117011

Merged
merged 11 commits into from
Mar 20, 2021
2 changes: 1 addition & 1 deletion pkgs/tools/networking/philter/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
description = "Mail sorter for Maildirs";
homepage = "http://philter.sourceforge.net";
maintainers = with maintainers; [ raskin ];
platforms = platforms.linux;
platforms = platforms.all;
license = licenses.gpl2;
};

Expand Down
2 changes: 1 addition & 1 deletion pkgs/tools/networking/pixiecore/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ buildGoModule rec {
homepage = "https://github.com/danderson/netboot/tree/master/pixiecore";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ bbigras danderson ];
platforms = lib.platforms.linux;
platforms = lib.platforms.unix;
};
}
2 changes: 1 addition & 1 deletion pkgs/tools/networking/pixiewps/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/wiire/pixiewps";
license = lib.licenses.gpl3;
maintainers = [ lib.maintainers.nico202 ];
platforms = lib.platforms.linux;
platforms = lib.platforms.all;
};
}
2 changes: 1 addition & 1 deletion pkgs/tools/networking/redir/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/troglobit/redir";
license = lib.licenses.gpl2;
maintainers = with lib.maintainers; [ ];
platforms = lib.platforms.linux;
platforms = lib.platforms.unix;
};
}
2 changes: 1 addition & 1 deletion pkgs/tools/networking/rshijack/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/kpcyrd/rshijack";
license = licenses.gpl3;
maintainers = with maintainers; [ xrelkd ];
platforms = platforms.linux;
platforms = platforms.unix;
};
}
2 changes: 1 addition & 1 deletion pkgs/tools/networking/surfraw/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ stdenv.mkDerivation {
description = "Provides a fast unix command line interface to a variety of popular WWW search engines and other artifacts of power";
homepage = "https://gitlab.com/surfraw/Surfraw";
maintainers = [];
platforms = lib.platforms.linux;
platforms = lib.platforms.all;
license = lib.licenses.publicDomain;
};
}
2 changes: 1 addition & 1 deletion pkgs/tools/security/asc-key-to-qr-code-gif/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ stdenv.mkDerivation {
meta = with lib; {
homepage = "https://github.com/yishilin14/asc-key-to-qr-code-gif";
description = "Convert ASCII-armored PGP keys to animated QR code";
platforms = platforms.linux;
platforms = platforms.unix;
maintainers = with maintainers; [ asymmetric ];
};
}
2 changes: 1 addition & 1 deletion pkgs/tools/security/bash-supergenpass/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ stdenv.mkDerivation {
supergenpass will ask for your master password interactively, and it will not be displayed on your terminal.
'';
license = licenses.mit;
platforms = platforms.linux;
platforms = platforms.all;
maintainers = with maintainers; [ fgaz ];
homepage = "https://github.com/lanzz/bash-supergenpass";
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/tools/security/pdfcrack/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
homepage = "http://pdfcrack.sourceforge.net/";
description = "Small command line driven tool for recovering passwords and content from PDF files";
license = with licenses; [ gpl2 ];
platforms = platforms.linux;
platforms = platforms.all;
maintainers = with maintainers; [ qoelet ];
};
}
2 changes: 1 addition & 1 deletion pkgs/tools/security/shc/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "https://neurobin.org/projects/softwares/unix/shc/";
description = "Shell Script Compiler";
platforms = lib.platforms.linux;
platforms = lib.platforms.all;
license = licenses.gpl3;
};
}
2 changes: 1 addition & 1 deletion pkgs/tools/system/gt5/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ stdenv.mkDerivation rec {
homepage = "http://gt5.sourceforge.net/";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [viric];
platforms = with lib.platforms; linux;
platforms = with lib.platforms; all;
};
}