tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
erlang: remove explicit gcc dependency
Daiderd Jordan
8 years ago
eaf9faef
d604336b
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
interpreters
erlang
generic-builder.nix
+4
-4
pkgs/development/interpreters/erlang/generic-builder.nix
···
1
{ pkgs, stdenv, fetchurl, fetchFromGitHub, makeWrapper, gawk, gnum4, gnused
2
-
, libxml2, libxslt, ncurses, openssl, perl, gcc, autoreconfHook
3
, openjdk ? null # javacSupport
4
, unixODBC ? null # odbcSupport
5
, mesa ? null, wxGTK ? null, wxmac ? null, xorg ? null # wxSupport
···
47
48
inherit src version;
49
50
-
buildInputs =
51
-
[ perl gnum4 ncurses openssl autoreconfHook libxslt libxml2 makeWrapper gcc
52
-
]
53
++ optionals wxSupport wxPackages2
54
++ optionals odbcSupport odbcPackages
55
++ optionals javacSupport javacPackages
···
1
{ pkgs, stdenv, fetchurl, fetchFromGitHub, makeWrapper, gawk, gnum4, gnused
2
+
, libxml2, libxslt, ncurses, openssl, perl, autoreconfHook
3
, openjdk ? null # javacSupport
4
, unixODBC ? null # odbcSupport
5
, mesa ? null, wxGTK ? null, wxmac ? null, xorg ? null # wxSupport
···
47
48
inherit src version;
49
50
+
nativeBuildInputs = [ autoreconfHook makeWrapper perl ];
51
+
52
+
buildInputs = [ gnum4 ncurses openssl autoreconfHook libxslt libxml2 ]
53
++ optionals wxSupport wxPackages2
54
++ optionals odbcSupport odbcPackages
55
++ optionals javacSupport javacPackages