Skip to content

Commit

Permalink
darwin: Disable yet another bunch of packages never having built succ…
Browse files Browse the repository at this point in the history
  • Loading branch information
dezgeg committed Sep 22, 2017
1 parent a8214f6 commit 83b72a9
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion pkgs/applications/science/logic/jonprl/default.nix
Expand Up @@ -29,6 +29,6 @@ stdenv.mkDerivation rec {
homepage = http://www.jonprl.org/;
license = stdenv.lib.licenses.mit;
maintainers = with stdenv.lib.maintainers; [ puffnfresh ];
platforms = stdenv.lib.platforms.unix;
platforms = stdenv.lib.platforms.linux;
};
}
2 changes: 1 addition & 1 deletion pkgs/development/libraries/dirac/default.nix
Expand Up @@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
homepage = http://sourceforge.net/projects/dirac;
description = "A general-purpose video codec based on wavelets";
platforms = platforms.all;
platforms = platforms.linux;
license = with licenses; [ mpl11 gpl2 lgpl21 ];
maintainer = maintainers.igsha;
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/libraries/idnkit/default.nix
Expand Up @@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
homepage = https://www.nic.ad.jp/ja/idn/idnkit;
description = "Provides functionalities about i18n domain name processing";
license = "idnkit-2 license";
platforms = platforms.unix;
platforms = platforms.linux;
maintainers = with maintainers; [ wkennington ];
};
}
2 changes: 1 addition & 1 deletion pkgs/tools/misc/osm2pgsql/default.nix
Expand Up @@ -23,6 +23,6 @@ stdenv.mkDerivation rec {
version = "0.92.1-unstable";
homepage = https://github.com/openstreetmap/osm2pgsql;
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.unix;
platforms = stdenv.lib.platforms.linux;
};
}
2 changes: 1 addition & 1 deletion pkgs/tools/networking/cjdns/default.nix
Expand Up @@ -31,6 +31,6 @@ stdenv.mkDerivation {
description = "Encrypted networking for regular people";
license = licenses.gpl3;
maintainers = with maintainers; [ ehmry ];
platforms = platforms.unix;
platforms = platforms.linux;
};
}
2 changes: 1 addition & 1 deletion pkgs/tools/networking/packetdrill/default.nix
Expand Up @@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
description = "Quick, precise tests for entire TCP/UDP/IPv4/IPv6 network stacks";
homepage = https://github.com/google/packetdrill;
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.unix;
platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers; [ dmjio cleverca22 ];
};
}
2 changes: 1 addition & 1 deletion pkgs/tools/security/trousers/default.nix
Expand Up @@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
homepage = http://trousers.sourceforge.net/;
license = licenses.cpl10;
maintainers = [ maintainers.ak ];
platforms = platforms.unix;
platforms = platforms.linux;
};
}

2 changes: 1 addition & 1 deletion pkgs/tools/text/nawk/default.nix
Expand Up @@ -36,6 +36,6 @@ stdenv.mkDerivation rec {
homepage = https://www.cs.princeton.edu/~bwk/btl.mirror/;
license = stdenv.lib.licenses.mit;
maintainers = [ stdenv.lib.maintainers.konimex ];
platforms = stdenv.lib.platforms.all;
platforms = stdenv.lib.platforms.linux;
};
}

1 comment on commit 83b72a9

@LnL7
Copy link
Member

@LnL7 LnL7 commented on 83b72a9 Sep 22, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FYI. I would prefer to mark packages as broken instead if upstream supports the platform.

Please sign in to comment.