Skip to content

Commit 40ed226

Browse files
globindezgeg
authored andcommittedSep 30, 2017
treewide: mark a bunch of failing builds as broken
(cherry picked from commit 23fdbaa) [dezgeg: Un-mark shotcut, tokei & uchiwa that do build on master]
1 parent bc3ddc9 commit 40ed226

File tree

18 files changed

+21
-6
lines changed

18 files changed

+21
-6
lines changed
 

Diff for: ‎nixos/release.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ in rec {
303303
#tests.panamax = hydraJob (import tests/panamax.nix { system = "x86_64-linux"; });
304304
tests.peerflix = callTest tests/peerflix.nix {};
305305
tests.postgresql = callSubTests tests/postgresql.nix {};
306-
tests.pgjwt = callTest tests/pgjwt.nix {};
306+
#tests.pgjwt = callTest tests/pgjwt.nix {};
307307
tests.printing = callTest tests/printing.nix {};
308308
tests.proxy = callTest tests/proxy.nix {};
309309
tests.pumpio = callTest tests/pump.io.nix {};

Diff for: ‎pkgs/applications/audio/gnaural/default.nix

+1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,6 @@ stdenv.mkDerivation rec {
1313
license = licenses.gpl2;
1414
maintainers = [ maintainers.ehmry ];
1515
platforms = platforms.linux;
16+
broken = true;
1617
};
1718
}

Diff for: ‎pkgs/applications/gis/grass/default.nix

+1
Original file line numberDiff line numberDiff line change
@@ -71,5 +71,6 @@ stdenv.mkDerivation {
7171
description = "GIS software suite used for geospatial data management and analysis, image processing, graphics and maps production, spatial modeling, and visualization";
7272
license = stdenv.lib.licenses.gpl2Plus;
7373
platforms = stdenv.lib.platforms.all;
74+
broken = true;
7475
};
7576
}

Diff for: ‎pkgs/applications/graphics/meshlab/default.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,6 @@ stdenv.mkDerivation rec {
4646
license = stdenv.lib.licenses.gpl2Plus;
4747
maintainers = with stdenv.lib.maintainers; [viric];
4848
platforms = with stdenv.lib.platforms; linux;
49-
broken = stdenv.isLinux && stdenv.isi686;
49+
broken = true;
5050
};
5151
}

Diff for: ‎pkgs/applications/graphics/synfigstudio/default.nix

+2
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ let
4242
ETL boost cairo gettext glibmm mlt-qt5 libsigcxx libxmlxx pango
4343
pkgconfig autoreconfHook
4444
];
45+
46+
meta.broken = true;
4547
};
4648
in
4749
stdenv.mkDerivation rec {

Diff for: ‎pkgs/applications/networking/browsers/vivaldi/ffmpeg-codecs.nix

+1
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,6 @@ stdenv.mkDerivation rec {
5353
license = licenses.lgpl21;
5454
maintainers = with maintainers; [ lluchs ];
5555
platforms = [ "x86_64-linux" ];
56+
broken = true;
5657
};
5758
}

Diff for: ‎pkgs/applications/science/machine-learning/torch/torch-distro.nix

+3
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ let
105105
installPhase = ''
106106
make install-extra $makeFlags
107107
'';
108+
meta.broken = true;
108109
};
109110

110111
luafilesystem = buildLuaRocks {
@@ -123,6 +124,7 @@ let
123124
luaffifb = buildLuaRocks {
124125
name = "luaffifb";
125126
src = "${distro_src}/extra/luaffifb";
127+
meta.broken = true;
126128
};
127129

128130
sundown = buildLuaRocks rec {
@@ -267,6 +269,7 @@ let
267269
preBuild = ''
268270
export Torch_DIR=${torch}/share/cmake/torch
269271
'';
272+
meta.broken = true;
270273
};
271274

272275
trepl = buildLuaRocks rec {

Diff for: ‎pkgs/applications/video/natron/default.nix

+1
Original file line numberDiff line numberDiff line change
@@ -122,5 +122,6 @@ stdenv.mkDerivation {
122122
license = stdenv.lib.licenses.gpl2;
123123
maintainers = [ maintainers.puffnfresh ];
124124
platforms = platforms.linux;
125+
broken = true;
125126
};
126127
}

Diff for: ‎pkgs/applications/video/shotcut/default.nix

-4
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,5 @@ stdenv.mkDerivation rec {
5252
license = licenses.gpl3;
5353
maintainers = [ maintainers.goibhniu ];
5454
platforms = platforms.linux;
55-
56-
# after qt5 bump it probably needs to be updated,
57-
# but newer versions seem to need newer than the latest stable mlt
58-
# broken = true;
5955
};
6056
}

Diff for: ‎pkgs/development/compilers/rust/beta.nix

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ rec {
2525
] ++ stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch;
2626

2727
doCheck = false;
28+
broken = true;
2829
};
2930

3031
cargo = callPackage ./cargo.nix rec {

Diff for: ‎pkgs/development/compilers/rust/nightly.nix

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ rec {
2222
] ++ stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch;
2323

2424
doCheck = false;
25+
broken = true;
2526
};
2627

2728
cargo = callPackage ./cargo.nix rec {

Diff for: ‎pkgs/development/compilers/rust/rustc.nix

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
, targetPatches
1111
, targetToolchains
1212
, doCheck ? true
13+
, broken ? false
1314
, buildPlatform, hostPlatform
1415
} @ args:
1516

@@ -154,5 +155,6 @@ stdenv.mkDerivation {
154155
maintainers = with maintainers; [ madjar cstrahan wizeman globin havvy wkennington ];
155156
license = [ licenses.mit licenses.asl20 ];
156157
platforms = platforms.linux ++ platforms.darwin;
158+
broken = broken;
157159
};
158160
}

Diff for: ‎pkgs/development/compilers/swift/default.nix

+1
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,7 @@ stdenv.mkDerivation rec {
263263
license = licenses.asl20;
264264
# Swift doesn't support 32bit Linux, unknown on other platforms.
265265
platforms = [ "x86_64-linux" ];
266+
broken = true;
266267
};
267268
}
268269

Diff for: ‎pkgs/development/libraries/qxt/default.nix

+1
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,6 @@ stdenv.mkDerivation rec {
2929
license = stdenv.lib.licenses.gpl2;
3030
platforms = stdenv.lib.platforms.linux;
3131
maintainers = with stdenv.lib.maintainers; [ forkk ];
32+
broken = true;
3233
};
3334
}

Diff for: ‎pkgs/development/ocaml-modules/curses/default.nix

+1
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,6 @@ stdenv.mkDerivation rec {
2727
license = licenses.gpl2;
2828
maintainers = [ maintainers.volth ];
2929
platforms = ocaml.meta.platforms or [];
30+
broken = true;
3031
};
3132
}

Diff for: ‎pkgs/development/tools/casperjs/default.nix

+1
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,6 @@ in stdenv.mkDerivation rec {
5050

5151
maintainers = [ stdenv.lib.maintainers.bluescreen303 ];
5252
platforms = stdenv.lib.platforms.linux;
53+
broken = true;
5354
};
5455
}

Diff for: ‎pkgs/games/odamex/default.nix

+1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,6 @@ stdenv.mkDerivation rec {
1717
license = stdenv.lib.licenses.gpl2;
1818
platforms = stdenv.lib.platforms.unix;
1919
maintainers = with stdenv.lib.maintainers; [ MP2E ];
20+
broken = true;
2021
};
2122
}

Diff for: ‎pkgs/games/spring/default.nix

+1
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,6 @@ stdenv.mkDerivation rec {
5050
license = licenses.gpl2;
5151
maintainers = [ maintainers.phreedom maintainers.qknight maintainers.domenkozar ];
5252
platforms = platforms.linux;
53+
broken = true;
5354
};
5455
}

0 commit comments

Comments
 (0)
Please sign in to comment.