mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 09:03:42 +00:00
i2p: fix platform
This commit is contained in:
parent
94d177fc5e
commit
2c6fbdefad
@ -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" ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user