From 0d39f485f07f0e8583b7183583442021f65dfc32 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 4 Apr 2016 11:31:54 +0200 Subject: [PATCH] haskell-hruby: remove obsolete override Closes https://github.com/NixOS/nixpkgs/pull/13920. --- pkgs/development/haskell-modules/configuration-common.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 2e555f664bd0..ba48becf5747 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -44,9 +44,6 @@ self: super: { statistics = dontCheck super.statistics; c2hs = if pkgs.stdenv.isDarwin then dontCheck super.c2hs else super.c2hs; - # The package doesn't compile with ruby 1.9, which is our default at the moment. - hruby = super.hruby.override { ruby = pkgs.ruby_2_1; }; - # Use the default version of mysql to build this package (which is actually mariadb). mysql = super.mysql.override { mysql = pkgs.mysql.lib; };