mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-15 05:59:17 +03:00
i2p: fix platform
This commit is contained in:
parent
94d177fc5e
commit
2c6fbdefad
1 changed files with 2 additions and 4 deletions
|
@ -1,8 +1,5 @@
|
||||||
{ stdenv, procps, coreutils, fetchurl, openjdk8, ant, gcj, gettext }:
|
{ 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 {
|
stdenv.mkDerivation rec {
|
||||||
name = "i2p-0.9.18";
|
name = "i2p-0.9.18";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
|
@ -36,6 +33,7 @@ stdenv.mkDerivation rec {
|
||||||
description = "Applications and router for I2P, anonymity over the Internet";
|
description = "Applications and router for I2P, anonymity over the Internet";
|
||||||
maintainers = [ stdenv.lib.maintainers.joelmo ];
|
maintainers = [ stdenv.lib.maintainers.joelmo ];
|
||||||
licenses = licenses.gpl2;
|
licenses = licenses.gpl2;
|
||||||
platforms = platforms.linux;
|
# TODO: support other systems, just copy appropriate lib/wrapper.. to $out
|
||||||
|
platforms = [ "x86_64-linux" ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue