forked from mirrors/nixpkgs
tachyon: remove nulls
This commit is contained in:
parent
b86571f4f5
commit
973a0ee2a3
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue