i2p: fix platform

This commit is contained in:
Joel Moberg 2015-04-15 12:38:17 +02:00
parent 94d177fc5e
commit 2c6fbdefad

View file

@ -1,8 +1,5 @@
{ stdenv, procps, coreutils, fetchurl, openjdk8, ant, gcj, gettext }:
# TODO: support other systems, just copy appropriate lib/wrapper.. to $out
assert stdenv.system != "x86_64-linux";
stdenv.mkDerivation rec {
name = "i2p-0.9.18";
src = fetchurl {
@ -36,6 +33,7 @@ stdenv.mkDerivation rec {
description = "Applications and router for I2P, anonymity over the Internet";
maintainers = [ stdenv.lib.maintainers.joelmo ];
licenses = licenses.gpl2;
platforms = platforms.linux;
# TODO: support other systems, just copy appropriate lib/wrapper.. to $out
platforms = [ "x86_64-linux" ];
};
}