summary refs log tree commit diff
path: root/pkgs/development/libraries/tcltls
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2012-09-09 05:08:37 +0200
committeraszlig <aszlig@redmoonstudios.org>2012-09-09 06:59:58 +0200
commit28a725fcbed7e6360734e1701d76d2e294b742f5 (patch)
tree43c195d4280f2ef4eb181686daf7f96d1c5b5b6a /pkgs/development/libraries/tcltls
parenta9da133fdadf212b055c63e0b9f377f564775943 (diff)
downloadnixpkgs-28a725fcbed7e6360734e1701d76d2e294b742f5.tar
nixpkgs-28a725fcbed7e6360734e1701d76d2e294b742f5.tar.gz
nixpkgs-28a725fcbed7e6360734e1701d76d2e294b742f5.tar.bz2
nixpkgs-28a725fcbed7e6360734e1701d76d2e294b742f5.tar.lz
nixpkgs-28a725fcbed7e6360734e1701d76d2e294b742f5.tar.xz
nixpkgs-28a725fcbed7e6360734e1701d76d2e294b742f5.tar.zst
nixpkgs-28a725fcbed7e6360734e1701d76d2e294b742f5.zip
bwidget/tcllib/tcltls: Add libPrefix attributes.
This is what I forgot in the packages I have added a few months ago, so it's
time to revisit them and improve things, like for example set the right
libPrefix in order to stay consistent with other TCL libraries.

In addition this fixes some whitespace ugliness in the affected packages.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'pkgs/development/libraries/tcltls')
-rw-r--r--pkgs/development/libraries/tcltls/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/development/libraries/tcltls/default.nix b/pkgs/development/libraries/tcltls/default.nix
index dbbfc3d3855..3f984c377dd 100644
--- a/pkgs/development/libraries/tcltls/default.nix
+++ b/pkgs/development/libraries/tcltls/default.nix
@@ -17,5 +17,9 @@ stdenv.mkDerivation rec {
     sha256 = "adec50143a9ad634a671d24f7c7bbf2455487eb5f12d290f41797c32a98b93f3";
   };
 
-  buildInputs = [tcl openssl];
+  passthru = {
+    libPrefix = "tls${version}";
+  };
+
+  buildInputs = [ tcl openssl ];
 }