perlPackages.TextBibTeX: do not hardcode gcc

See https://github.com/NixOS/nixpkgs/commit/e619ace733fee725da5a1b84e5cce68d610ba35e##commitcomment-23660930
This commit is contained in:
Gabriel Ebner
2017-08-18 08:25:41 +02:00
parent efc95339c0
commit 9a67c8e56d
+1 -1
View File
@@ -14209,7 +14209,7 @@ let self = _self // overrides; _self = with self; {
url = "mirror://cpan/authors/id/A/AM/AMBS/${name}.tar.gz";
sha256 = "0dig1zlglm8rwm8fhnz087lx6gixj9jx10kxn1fx3swdkfblhsmf";
};
perlPreHook = "export LD=gcc";
perlPreHook = "export LD=$CC";
meta = {
description = "Interface to read and parse BibTeX files";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];