summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-common.nix
diff options
context:
space:
mode:
authorJude Taylor <me@jude.bio>2015-11-14 13:51:50 -0800
committerJude Taylor <me@jude.bio>2015-11-19 11:31:06 -0800
commit131e831cb97c9762c3b10b35ae3c2094366a5886 (patch)
treeb5aa3b5dcdbaa7ec97b38a5199c9df150e5b1c3f /pkgs/development/haskell-modules/configuration-common.nix
parent163acc0efa2a378b8f3fe74a6350e1a0e179d5f2 (diff)
downloadnixlib-131e831cb97c9762c3b10b35ae3c2094366a5886.tar
nixlib-131e831cb97c9762c3b10b35ae3c2094366a5886.tar.gz
nixlib-131e831cb97c9762c3b10b35ae3c2094366a5886.tar.bz2
nixlib-131e831cb97c9762c3b10b35ae3c2094366a5886.tar.lz
nixlib-131e831cb97c9762c3b10b35ae3c2094366a5886.tar.xz
nixlib-131e831cb97c9762c3b10b35ae3c2094366a5886.tar.zst
nixlib-131e831cb97c9762c3b10b35ae3c2094366a5886.zip
allow networking by default and remove it from derivations
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-common.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix5
1 files changed, 0 insertions, 5 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 2dac800bace9..f57de134b791 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -923,9 +923,4 @@ self: super: {
   hscurses = overrideCabal super.hscurses (drv: {
     librarySystemDepends = (drv.librarySystemDepends or []) ++ [ pkgs.ncurses ];
   });
-
-  streaming-commons = pkgs.stdenv.lib.overrideDerivation super.streaming-commons (drv: {
-    __sandboxProfile = drv.__sandboxProfile +
-      pkgs.stdenv.lib.sandbox.allowNetworkLocal;
-  });
 }