Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5c5baaf17d68
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 73e95580296d
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Aug 21, 2018

  1. mono5: mark 5.x broken on aarch64

    5.x has been broken on hydra since 2017-07-06
    xeji committed Aug 21, 2018
    Copy the full SHA
    bd9bca4 View commit details

Commits on Aug 23, 2018

  1. Merge pull request #45436 from xeji/mono5-broken-aarch64

    mono5.x: mark mono >=  5 broken on aarch64
    Mic92 authored Aug 23, 2018
    Copy the full SHA
    73e9558 View commit details
Showing with 6 additions and 4 deletions.
  1. +6 −4 pkgs/development/compilers/mono/generic-cmake.nix
10 changes: 6 additions & 4 deletions pkgs/development/compilers/mono/generic-cmake.nix
Original file line number Diff line number Diff line change
@@ -80,11 +80,13 @@ stdenv.mkDerivation rec {

inherit enableParallelBuilding;

meta = {
meta = with stdenv.lib; {
homepage = http://mono-project.com/;
description = "Cross platform, open source .NET development framework";
platforms = with stdenv.lib.platforms; darwin ++ linux;
maintainers = with stdenv.lib.maintainers; [ thoughtpolice obadz vrthra ];
license = stdenv.lib.licenses.free; # Combination of LGPL/X11/GPL ?
platforms = with platforms; darwin ++ linux;
maintainers = with maintainers; [ thoughtpolice obadz vrthra ];
license = licenses.free; # Combination of LGPL/X11/GPL ?
# 2018-08-21: mono 5.x is broken on aarch64 since at least 2017-07-06
broken = stdenv.isAarch64 && (versionAtLeast version "5");
};
}