Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
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-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3108f741fe67
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f5db056efd08
Choose a head ref
  • 3 commits
  • 3 files changed
  • 1 contributor

Commits on Sep 28, 2018

  1. fox: mark broken on darwin

        Undefined symbols for architecture x86_64:
          "_MPCreateSemaphore", referenced from:
              FX::FXSemaphore::FXSemaphore(int) in FXThread.o
              FX::FXSemaphore::FXSemaphore(int) in FXThread.o
          "_MPDeleteSemaphore", referenced from:
              FX::FXSemaphore::~FXSemaphore() in FXThread.o
              FX::FXSemaphore::~FXSemaphore() in FXThread.o
          "_MPSignalSemaphore", referenced from:
              FX::FXSemaphore::post() in FXThread.o
          "_MPWaitOnSemaphore", referenced from:
              FX::FXSemaphore::wait() in FXThread.o
              FX::FXSemaphore::trywait() in FXThread.o
        ld: symbol(s) not found for architecture x86_64
    
    /cc ZHF #45961
    
    (cherry picked from commit 6390b8b)
    LnL7 authored and xeji committed Sep 28, 2018
    Copy the full SHA
    c1f9ffc View commit details
  2. flpsed: mark linux only

    Doesn't build on darwin and probably other platforms.
    
        GsWidget.H:26:3: error: 'Atom' does not name a type; did you mean 'tm'?
           Atom atoms[5];
           ^~~~
           tm
        GsWidget.cxx: In member function 'void GsWidget::setProps()':
        GsWidget.cxx:47:2: error: 'atoms' was not declared in this scope
          atoms[0] = XInternAtom(fl_display,"GHOSTVIEW" , false);
          ^~~~~
    
    /cc ZHF #45961
    
    (cherry picked from commit cd78d0c)
    LnL7 authored and xeji committed Sep 28, 2018
    Copy the full SHA
    e087e20 View commit details
  3. freedroidrpg: don't build on hydra

    Similar to some other builds, sdl-config gets stuck and times out.
    
        checking for sdl-config... /nix/store/q2hm1ka0qxs2gv5bmrxj7j80lygk4b5z-SDL-1.2.15-dev/bin/sdl-config
        building of '/nix/store/m2d7v0n5hd2498vfxp18i37p7r1lf76p-freedroidrpg-0.16.1' timed out after 7200 seconds of silence
    
    /cc ZHF #45961
    
    (cherry picked from commit 9b99819)
    LnL7 authored and xeji committed Sep 28, 2018
    Copy the full SHA
    f5db056 View commit details
Showing with 4 additions and 2 deletions.
  1. +2 −2 pkgs/applications/editors/flpsed/default.nix
  2. +1 −0 pkgs/development/libraries/fox/default.nix
  3. +1 −0 pkgs/games/freedroidrpg/default.nix
4 changes: 2 additions & 2 deletions pkgs/applications/editors/flpsed/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{stdenv, fetchurl, fltk13, ghostscript}:
{ stdenv, fetchurl, fltk13, ghostscript, xlibs }:

stdenv.mkDerivation rec {
name = "flpsed-${version}";
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
description = "WYSIWYG PostScript annotator";
homepage = http://flpsed.org/flpsed.html;
license = licenses.gpl3;
platforms = platforms.mesaPlatforms;
platforms = platforms.linux;
maintainers = with maintainers; [ fuuzetsu ];
};
}
1 change: 1 addition & 0 deletions pkgs/development/libraries/fox/default.nix
Original file line number Diff line number Diff line change
@@ -32,6 +32,7 @@ stdenv.mkDerivation rec {
homepage = http://fox-toolkit.org;
license = licenses.lgpl3;
maintainers = [];
broken = stdenv.isDarwin;
platforms = platforms.all;
};
}
1 change: 1 addition & 0 deletions pkgs/games/freedroidrpg/default.nix
Original file line number Diff line number Diff line change
@@ -58,5 +58,6 @@ in stdenv.mkDerivation rec {

maintainers = with maintainers; [ jtojnar ];
platforms = platforms.unix;
hydraPlatforms = platforms.linux; # sdl-config times out on darwin
};
}