tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
tcltls: Fix reference to openssl dev output
Tuomas Tynkkynen
9 years ago
4223e83a
f97ba307
+12
-10
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
tcltls
default.nix
+12
-10
pkgs/development/libraries/tcltls/default.nix
reviewed
···
4
4
name = "tcltls-${version}";
5
5
version = "1.6";
6
6
7
7
-
configureFlags = "--with-tcl=" + tcl + "/lib "
8
8
-
+ "--with-tclinclude=" + tcl + "/include "
9
9
-
+ "--with-ssl-dir=" + openssl;
10
10
-
11
11
-
preConfigure = ''
12
12
-
configureFlags="--exec_prefix=$prefix $configureFlags"
13
13
-
'';
14
14
-
15
7
src = fetchurl {
16
8
url = "mirror://sourceforge/tls/tls${version}-src.tar.gz";
17
9
sha256 = "adec50143a9ad634a671d24f7c7bbf2455487eb5f12d290f41797c32a98b93f3";
18
10
};
19
11
12
12
+
buildInputs = [ tcl openssl ];
13
13
+
14
14
+
configureFlags = [
15
15
+
"--with-tcl=${tcl}/lib"
16
16
+
"--with-tclinclude=${tcl}/include"
17
17
+
"--with-ssl-dir=${openssl.dev}"
18
18
+
];
19
19
+
20
20
+
preConfigure = ''
21
21
+
configureFlags="--exec_prefix=$prefix $configureFlags"
22
22
+
'';
23
23
+
20
24
passthru = {
21
25
libPrefix = "tls${version}";
22
26
};
23
23
-
24
24
-
buildInputs = [ tcl openssl ];
25
27
26
28
meta = {
27
29
homepage = "http://tls.sourceforge.net/";