mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 22:43:01 +00:00
fox: format with nixfmt-rfc-style
This commit is contained in:
parent
42d1e057e0
commit
3b553ac37d
@ -1,17 +1,18 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchurl
|
||||
, libpng
|
||||
, libjpeg
|
||||
, libtiff
|
||||
, zlib
|
||||
, bzip2
|
||||
, mesa_glu
|
||||
, libXcursor
|
||||
, libXext
|
||||
, libXrandr
|
||||
, libXft
|
||||
, cups
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchurl,
|
||||
libpng,
|
||||
libjpeg,
|
||||
libtiff,
|
||||
zlib,
|
||||
bzip2,
|
||||
mesa_glu,
|
||||
libXcursor,
|
||||
libXext,
|
||||
libXrandr,
|
||||
libXft,
|
||||
cups,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -23,9 +24,22 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "sha256-bu+IEqNkv9OAf96dPYre3CP759pjalVIbYyc3QSQW2w=";
|
||||
};
|
||||
|
||||
buildInputs = [ libpng libjpeg libtiff zlib bzip2 mesa_glu libXcursor libXext libXrandr libXft ] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
||||
cups
|
||||
];
|
||||
buildInputs =
|
||||
[
|
||||
libpng
|
||||
libjpeg
|
||||
libtiff
|
||||
zlib
|
||||
bzip2
|
||||
mesa_glu
|
||||
libXcursor
|
||||
libXext
|
||||
libXrandr
|
||||
libXft
|
||||
]
|
||||
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
||||
cups
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user