mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
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 byf646b9295e
andd078fe1e9c
.
This commit is contained in:
parent
aa4e1093c5
commit
fc7c751515
@ -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;
|
||||
};
|
||||
}
|
||||
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user