Joachim Fasting
9e12be50b4
tor-browser-bundle-bin: support injecting additional prefs
...
The `extraPrefs` parameter is injected verbatim into the mozilla.cfg
file.
Note that the syntax is a superset of the usual prefs.js syntax. The
following procedures are of particular interest:
pref() to set a preference as if it had been toggled in about:config
defaultPref() to set the *default* value of a preference
lockPref() to set a preference & prevent further modification
clearPref() to reset a preference to its default state
Example:
```nix
tor-browser-bundle-bin.override {
extraPrefs = ''
// Increase default security level
pref("extensions.torbutton.security_slider", 2);
'';
}
```
2017-07-13 10:12:33 +02:00
Joachim Fasting
07e492c6e6
tor-browser-bundle-bin: do not call home to check tbb version
2017-07-13 10:12:27 +02:00
Jörg Thalheim
8559e5269c
Merge pull request #27346 from siddharthist/pycodestyle
...
pycodestyle: 2.0.0 -> 2.3.1
2017-07-13 08:46:24 +01:00
Peter Simons
85c884278e
haskell-lens: use latest version when compiling with ghc-8.2.x
2017-07-13 08:47:01 +02:00
Peter Simons
559b1b7647
haskell-semigroupoids: use latest version when compiling with ghc-8.2.x
2017-07-13 08:47:01 +02:00
Peter Simons
c6ccfcd01a
haskell-base-orphans: use latest version when compiling with ghc-8.2.x
2017-07-13 08:47:01 +02:00
Peter Simons
bde4ef2234
haskell-hashable: jailbreak to fix build with ghc-8.2.x
2017-07-13 08:44:18 +02:00
Peter Simons
2180d2c118
haskell-jailbreak-cabal: use stable version from ghc-8.0.x in ghc-8.2.x package set
...
The version compiled with Cabal 2.x breaks many packages, like doctest and
hashable. This needs further investigation.
2017-07-13 08:44:18 +02:00
Peter Simons
26762f1e1e
haskell-base-orphans: disable test suite to avoid build failures with ghc-8.2.x
2017-07-13 08:44:18 +02:00
Peter Simons
0ee5424ebf
haskell-doctest: remove obsolete jailbreak; ghc-8.2.x can build this package now
2017-07-13 08:44:18 +02:00
Peter Simons
f980dbec97
haskell-ChasingBottoms: jailbreak to fix build with ghc-8.2.x
2017-07-13 08:44:17 +02:00
Peter Simons
e59c532c23
haskell-hspec-meta: use latest version when compiling with ghc-8.2.x
...
Fixes https://github.com/hspec/hspec/issues/323 .
2017-07-13 08:44:17 +02:00
Peter Simons
4a599a688e
Merge pull request #27322 from dmjio/patch-4
...
miso: init at 0.2.0.0
2017-07-13 08:38:58 +02:00
Daniel Peebles
598d79ae7d
Merge pull request #27341 from lheckemann/installer-fixes
...
nixos-install: quote nixos-prepare-root arguments
2017-07-13 00:31:44 -04:00
Peter Hoeg
5cb11abc9e
systemd: paths and slices are supported for user units too
2017-07-13 11:55:48 +08:00
Langston Barrett
7b27f7c28f
pycodestyle: 2.0.0 -> 2.3.1
2017-07-13 00:32:27 +00:00
Jörg Thalheim
eb28340bac
Merge pull request #27285 from emmanuelrosa/pgadmin-desktop-file
...
pgadmin: make desktop item
2017-07-12 23:19:33 +01:00
Linus Heckemann
fa5700544b
nixos-install: quote nixos-prepare-root arguments
...
This prevents the script from breaking when channel_root is empty.
2017-07-12 21:58:25 +01:00
Jörg Thalheim
3d380b9082
Merge pull request #27289 from vyp/patch/xst-init
...
xst: init at 0.7.1
2017-07-12 21:46:42 +01:00
Jörg Thalheim
b38e33775b
xst: use fetchFromGitHub
2017-07-12 21:30:14 +01:00
Jörg Thalheim
9e72b32579
Merge pull request #27291 from celldee/sway_0_13_0
...
sway: 0.12.2 -> 0.13.0
2017-07-12 21:23:18 +01:00
Vincent Laporte
ff965a59f5
scite: 3.7.3 -> 3.7.5
2017-07-12 22:11:36 +02:00
Vincent Laporte
e47dcb9cef
ocamlPackages.tsdl: 0.9.0 -> 0.9.4
2017-07-12 19:40:00 +00:00
Jörg Thalheim
575ce53d14
Merge pull request #27296 from lsix/update_django_compressor
...
pythonPackages.django_compressor: 1.5 -> 2.1.1
2017-07-12 20:34:24 +01:00
Jörg Thalheim
61c1313bd1
Merge pull request #27329 from dbrock/solc
...
solc: 0.4.12 -> 0.4.13
2017-07-12 20:31:25 +01:00
Jörg Thalheim
c0d28bdf23
Merge pull request #27332 from ankhers/update_elixir_rc
...
elixir: 1.5.0-rc.0 -> 1.5.0-rc.1
2017-07-12 20:19:23 +01:00
Jörg Thalheim
2bb961ffb1
Merge pull request #27328 from NickHu/terminus
...
terminus-font: 4.40 -> 4.46
2017-07-12 20:15:05 +01:00
Jörg Thalheim
f52942d13f
Merge pull request #27333 from sternenseemann/google-fonts
...
google-fonts: 2016-08-30 -> 2017-06-28
2017-07-12 20:10:57 +01:00
David Johnson
51edf3bf88
miso: init at 0.2.0.0
2017-07-12 18:47:18 +00:00
Vincent Laporte
574f3c3bfe
ocamlPackages.csv: 1.5 -> 1.7
2017-07-12 20:45:02 +02:00
Joachim Fasting
6620e007f4
ndisc6: change meta.homepage to https
...
The http address is a permanent redirect
2017-07-12 20:32:56 +02:00
Joachim Fasting
50339315e5
ndisc6: do not attempt to install suid binaries
2017-07-12 20:32:47 +02:00
Vincent Laporte
63cda55aa2
ocamlPackages.menhir: 20170418 -> 20170712
2017-07-12 18:13:33 +00:00
Vincent Laporte
5772d292d7
ocsigenserver: enable deflatemod extension
2017-07-12 18:13:32 +00:00
Vincent Laporte
dd907450fe
ocamlPackages.ctypes: 0.11.2 -> 0.11.5
2017-07-12 18:13:25 +00:00
Vincent Laporte
6a3a4f559b
ocamlPackages.integers: init at 0.2.2
2017-07-12 18:11:40 +00:00
Eelco Dolstra
88d9d2de5b
Use LLVM 4 on all platforms
2017-07-12 19:08:56 +02:00
Gabriel Ebner
71e44b1453
vscode: 1.13.0 -> 1.14.0
2017-07-12 17:23:39 +01:00
Peter Hoeg
18e2b44653
wp-cli: 1.2.0 -> 1.2.1
2017-07-13 00:22:08 +08:00
sternenseemann
08ef46892c
google-fonts: 2016-08-30 -> 2017-06-28
2017-07-12 18:17:42 +02:00
Peter Hoeg
16cc87ca29
terraform: disable checks for 0.9 as they are failing again
2017-07-13 00:12:22 +08:00
Peter Hoeg
ef78ff8420
terragrunt: 0.12.16 -> 0.12.24
2017-07-13 00:09:07 +08:00
Peter Hoeg
299c57e6f3
terragrunt: make v0.11.1 use its own deps file
2017-07-13 00:06:05 +08:00
Peter Hoeg
fc47846e39
syncthing: 0.14.31 -> 0.14.32
2017-07-12 23:56:42 +08:00
Peter Hoeg
f482ea2ed2
quaternion: 2017-04-15 -> 2017-06-29
2017-07-12 23:50:23 +08:00
Thomas Tuegel
9ed95423d4
isyncUnstable: 20170329 -> 20170514
2017-07-12 09:52:48 -05:00
Eelco Dolstra
222c2b34d9
apr-util: 1.5.4 -> 1.6.0
2017-07-12 16:43:03 +02:00
Eelco Dolstra
770b2b6912
apr: 1.5.2 -> 1.6.2
2017-07-12 16:43:02 +02:00
Andrew Cann
9747eca164
houdini: init at 16.0.633 ( #27326 )
2017-07-12 15:36:28 +01:00
Justin Wood
811142aa71
elixir: 1.5.0-rc.0 -> 1.5.0-rc.1
2017-07-12 10:10:13 -04:00