tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
double-conversion: rename attr from double_conversion
Orivej Desh
8 years ago
eb23772c
f6dfa221
+6
-5
4 changed files
expand all
collapse all
unified
split
pkgs
development
libraries
folly
default.nix
servers
clickhouse
default.nix
top-level
aliases.nix
all-packages.nix
+2
-2
pkgs/development/libraries/folly/default.nix
reviewed
···
1
1
{ stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, pkgconfig, boost, libevent
2
2
-
, double_conversion, glog, google-gflags, python, libiberty, openssl }:
2
2
+
, double-conversion, glog, google-gflags, python, libiberty, openssl }:
3
3
4
4
stdenv.mkDerivation rec {
5
5
name = "folly-${version}";
···
13
13
};
14
14
15
15
nativeBuildInputs = [ autoreconfHook python pkgconfig ];
16
16
-
buildInputs = [ libiberty boost libevent double_conversion glog google-gflags openssl ];
16
16
+
buildInputs = [ libiberty boost libevent double-conversion glog google-gflags openssl ];
17
17
18
18
postPatch = "cd folly";
19
19
preBuild = ''
+2
-2
pkgs/servers/clickhouse/default.nix
reviewed
···
1
1
-
{ stdenv, fetchFromGitHub, cmake, libtool, boost, double_conversion, gperftools, icu, libmysql, lz4, openssl, poco, re2, rdkafka, readline, sparsehash, unixODBC, zookeeper_mt, zstd }:
1
1
+
{ stdenv, fetchFromGitHub, cmake, libtool, boost, double-conversion, gperftools, icu, libmysql, lz4, openssl, poco, re2, rdkafka, readline, sparsehash, unixODBC, zookeeper_mt, zstd }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
name = "clickhouse-${version}";
···
16
16
17
17
nativeBuildInputs = [ cmake libtool ];
18
18
19
19
-
buildInputs = [ boost double_conversion gperftools icu libmysql lz4 openssl poco re2 rdkafka readline sparsehash unixODBC zookeeper_mt zstd ];
19
19
+
buildInputs = [ boost double-conversion gperftools icu libmysql lz4 openssl poco re2 rdkafka readline sparsehash unixODBC zookeeper_mt zstd ];
20
20
21
21
cmakeFlags = [ "-DENABLE_TESTS=OFF" "-DUNBUNDLED=ON" "-DUSE_STATIC_LIBRARIES=OFF" ];
22
22
+1
pkgs/top-level/aliases.nix
reviewed
···
47
47
cv = progress; # added 2015-09-06
48
48
debian_devscripts = debian-devscripts; # added 2016-03-23
49
49
digikam5 = digikam; # added 2017-02-18
50
50
+
double_conversion = double-conversion; # 2017-11-22
50
51
dwarf_fortress = dwarf-fortress; # added 2016-01-23
51
52
dwbWrapper = dwb; # added 2015-01
52
53
enblendenfuse = enblend-enfuse; # 2015-09-30
+1
-1
pkgs/top-level/all-packages.nix
reviewed
···
8062
8062
8063
8063
dhex = callPackage ../applications/editors/dhex { };
8064
8064
8065
8065
-
double_conversion = callPackage ../development/libraries/double-conversion { };
8065
8065
+
double-conversion = callPackage ../development/libraries/double-conversion { };
8066
8066
8067
8067
dclib = callPackage ../development/libraries/dclib { };
8068
8068