summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndrew Brooks <andrew.brooks@flightaware.com>2021-05-07 18:25:33 -0500
committerAndrew Brooks <andrew.brooks@flightaware.com>2021-05-21 15:18:25 -0500
commit1c44a44932786cdc5ba99d87b5a505f5ae94eaee (patch)
tree1639581e7a1221c5237869a4df1660ef1aa00089
parenta49a274abf77dbd6f698e5b6a72bb2b4848d5337 (diff)
downloadnixpkgs-1c44a44932786cdc5ba99d87b5a505f5ae94eaee.tar
nixpkgs-1c44a44932786cdc5ba99d87b5a505f5ae94eaee.tar.gz
nixpkgs-1c44a44932786cdc5ba99d87b5a505f5ae94eaee.tar.bz2
nixpkgs-1c44a44932786cdc5ba99d87b5a505f5ae94eaee.tar.lz
nixpkgs-1c44a44932786cdc5ba99d87b5a505f5ae94eaee.tar.xz
nixpkgs-1c44a44932786cdc5ba99d87b5a505f5ae94eaee.tar.zst
nixpkgs-1c44a44932786cdc5ba99d87b5a505f5ae94eaee.zip
bwidget: add missing dependency on tk
-rw-r--r--pkgs/development/libraries/bwidget/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/libraries/bwidget/default.nix b/pkgs/development/libraries/bwidget/default.nix
index f289077c88b..0cba8b21fe6 100644
--- a/pkgs/development/libraries/bwidget/default.nix
+++ b/pkgs/development/libraries/bwidget/default.nix
@@ -1,4 +1,4 @@
-{ lib, fetchurl, tcl }:
+{ lib, fetchurl, tcl, tk }:
 
 let
   version = "1.9.14";
@@ -13,6 +13,7 @@ in tcl.mkTclDerivation {
   };
 
   dontBuild = true;
+  propagatedBuildInputs = [tk];
 
   installPhase = ''
     mkdir -p "$out/lib/${libPrefix}"
@@ -22,6 +23,7 @@ in tcl.mkTclDerivation {
   meta = {
     homepage = "https://sourceforge.net/projects/tcllib";
     description = "High-level widget set for Tcl/Tk";
+    maintainers = with lib.maintainers; [ agbrooks ];
     license = lib.licenses.tcltk;
     platforms = lib.platforms.linux;
   };