about summary refs log tree commit diff
path: root/pkgs/development/tools/parsing
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-07-22 16:25:00 +0200
committerVladimír Čunát <vcunat@gmail.com>2015-07-23 11:53:18 +0200
commitaf2ab0b911a153813789107b19f8066ee4414944 (patch)
tree0a85b364ba7d1e2c2a98822edd32b7febafb4f4c /pkgs/development/tools/parsing
parent95685e962d7c2e5ec5a22be5136df238afcbf305 (diff)
downloadnixlib-af2ab0b911a153813789107b19f8066ee4414944.tar
nixlib-af2ab0b911a153813789107b19f8066ee4414944.tar.gz
nixlib-af2ab0b911a153813789107b19f8066ee4414944.tar.bz2
nixlib-af2ab0b911a153813789107b19f8066ee4414944.tar.lz
nixlib-af2ab0b911a153813789107b19f8066ee4414944.tar.xz
nixlib-af2ab0b911a153813789107b19f8066ee4414944.tar.zst
nixlib-af2ab0b911a153813789107b19f8066ee4414944.zip
remove gcc49 overrides from various places
An interesting thing is that: stdenv != overrideCC stdenv gcc49;
I'm not sure why that is, but it doesn't seem important.

/cc maintainers: @nckx, @garbas, @abbradar, @cstrahan, @grwlf.

(cherry picked from commit 3064b6a0cc4dc047fae97bdffa0725bc7fd38f2e)
Diffstat (limited to 'pkgs/development/tools/parsing')
-rw-r--r--pkgs/development/tools/parsing/flexc++/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/parsing/flexc++/default.nix b/pkgs/development/tools/parsing/flexc++/default.nix
index 515fb9d251f2..d723cc0382b3 100644
--- a/pkgs/development/tools/parsing/flexc++/default.nix
+++ b/pkgs/development/tools/parsing/flexc++/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, bobcat, gcc49, icmake, yodl }:
+{ stdenv, fetchurl, bobcat, icmake, yodl }:
 
 let version = "2.02.00"; in
 stdenv.mkDerivation rec {
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
     maintainers = with maintainers; [ nckx ];
   };
 
-  buildInputs = [ bobcat gcc49 ];
+  buildInputs = [ bobcat ];
   nativeBuildInputs = [ icmake yodl ];
 
   postPatch = ''