From 973a0ee2a3cb8c4e0969c98b7cf35d622e7fa729 Mon Sep 17 00:00:00 2001 From: Artturin Date: Tue, 10 May 2022 00:02:53 +0300 Subject: [PATCH] tachyon: remove nulls --- pkgs/development/libraries/tachyon/default.nix | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/pkgs/development/libraries/tachyon/default.nix b/pkgs/development/libraries/tachyon/default.nix index 970b8a84622..ed2819e88c1 100644 --- a/pkgs/development/libraries/tachyon/default.nix +++ b/pkgs/development/libraries/tachyon/default.nix @@ -1,16 +1,12 @@ { lib, stdenv , fetchurl -, Carbon ? null -, libjpeg ? null -, libpng ? null +, Carbon +, libjpeg +, libpng , withJpegSupport ? true # support jpeg output , withPngSupport ? true # support png output }: -assert withJpegSupport -> libjpeg != null; -assert withPngSupport -> libpng != null; -assert stdenv.isDarwin -> Carbon != null; - stdenv.mkDerivation rec { pname = "tachyon"; version = "0.99.4";