summary refs log tree commit diff
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2022-03-27 15:20:05 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2022-03-27 17:54:57 +0200
commit8e0f6609c3086522314b967218005a7c7fc7b923 (patch)
treee09ab3519500f87568cf99e2ecfeb9f5072ff571
parenta9ab92ee1271b41369a0cc58fa8af5685042b7ed (diff)
downloadnixpkgs-8e0f6609c3086522314b967218005a7c7fc7b923.tar
nixpkgs-8e0f6609c3086522314b967218005a7c7fc7b923.tar.gz
nixpkgs-8e0f6609c3086522314b967218005a7c7fc7b923.tar.bz2
nixpkgs-8e0f6609c3086522314b967218005a7c7fc7b923.tar.lz
nixpkgs-8e0f6609c3086522314b967218005a7c7fc7b923.tar.xz
nixpkgs-8e0f6609c3086522314b967218005a7c7fc7b923.tar.zst
nixpkgs-8e0f6609c3086522314b967218005a7c7fc7b923.zip
libgda: remove `? null` from inputs
-rw-r--r--pkgs/development/libraries/libgda/default.nix7
1 files changed, 2 insertions, 5 deletions
diff --git a/pkgs/development/libraries/libgda/default.nix b/pkgs/development/libraries/libgda/default.nix
index a9993b7255a..59d1f0830bc 100644
--- a/pkgs/development/libraries/libgda/default.nix
+++ b/pkgs/development/libraries/libgda/default.nix
@@ -17,14 +17,11 @@
 , autoconf-archive
 , yelp-tools
 , mysqlSupport ? false
-, libmysqlclient ? null
+, libmysqlclient
 , postgresSupport ? false
-, postgresql ? null
+, postgresql
 }:
 
-assert mysqlSupport -> libmysqlclient != null;
-assert postgresSupport -> postgresql != null;
-
 stdenv.mkDerivation rec {
   pname = "libgda";
   version = "5.2.10";