Fix nixpkgs eval (caused by 'emscripten' expression)

Fixes this:

 $ nix-env -f . -qa '*' --meta --xml --drv-path --show-trace
 error: while evaluating ‘callPackageWith’ at .../lib/customisation.nix:93:35, called from .../pkgs/top-level/all-packages.nix:1411:24:
 while evaluating ‘makeOverridable’ at .../lib/customisation.nix:54:24, called from .../lib/customisation.nix:97:8:
 undefined variable ‘srcFC’ at .../pkgs/development/compilers/emscripten-fastcomp/default.nix:26:14

Also, "matthewbauer" is not defined in ./lib/maintainers.nix, comment
out.

Caused by f646b9295e and
d078fe1e9c.
This commit is contained in:
Bjørn Forsman 2016-05-27 15:49:17 +02:00
parent aa4e1093c5
commit fc7c751515
2 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ let
rev = "1.36.4";
in
stdenv.mkDerivation {
stdenv.mkDerivation rec {
name = "emscripten-fastcomp-${rev}";
srcFC = fetchFromGitHub {
@ -40,7 +40,7 @@ stdenv.mkDerivation {
homepage = https://github.com/kripken/emscripten-fastcomp;
description = "emscripten llvm";
platforms = platforms.all;
maintainers = with maintainers; [ qknight matthewbauer ];
maintainers = with maintainers; [ qknight /*matthewbauer (undefined) */ ];
license = stdenv.lib.licenses.ncsa;
};
}

View File

@ -40,7 +40,7 @@ stdenv.mkDerivation {
homepage = https://github.com/kripken/emscripten;
description = "An LLVM-to-JavaScript Compiler";
platforms = platforms.all;
maintainers = with maintainers; [ qknight matthewbauer ];
maintainers = with maintainers; [ qknight /*matthewbauer (undefined) */ ];
license = licenses.ncsa;
};
}