lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

phantomjs2: fix evaluation and refactor

The error was due to the fact that with-introduced bindings have lower
priority and we do have `darwin` in scope already.

Fixes #12350. Closes #12351. (A slightly different fix.
I chose this to lower the risk of people re-introducing the mistake.)

+4 -4
+4 -4
pkgs/development/tools/phantomjs2/default.nix
··· 94 94 $out/bin/phantomjs 95 95 ''; 96 96 97 - meta = { 97 + meta = with stdenv.lib; { 98 98 description = "Headless WebKit with JavaScript API"; 99 99 longDescription = '' 100 100 PhantomJS2 is a headless WebKit with JavaScript API. ··· 109 109 ''; 110 110 111 111 homepage = http://phantomjs.org/; 112 - license = stdenv.lib.licenses.bsd3; 112 + license = licenses.bsd3; 113 113 114 - maintainers = [ stdenv.lib.maintainers.aflatter ]; 115 - platforms = with stdenv.lib.platforms; darwin ++ linux; 114 + maintainers = [ maintainers.aflatter ]; 115 + platforms = platforms.darwin ++ platforms.linux; 116 116 }; 117 117 }