mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
bluejeans: apply nixpkgs-fmt
This commit is contained in:
parent
5f8bf63a3b
commit
d5e41b6740
@ -1,6 +1,33 @@
|
||||
{ stdenv, fetchurl, rpmextract, patchelf, libnotify, libcap, cairo, pango, fontconfig, udev, dbus
|
||||
, gtk2, atk, expat, gdk-pixbuf, freetype, nspr, glib, nss, gconf, libX11, libXrender, libXtst, libXdamage
|
||||
, libXi, libXext, libXfixes, libXcomposite, alsaLib, bash
|
||||
{ stdenv
|
||||
, fetchurl
|
||||
, rpmextract
|
||||
, patchelf
|
||||
, libnotify
|
||||
, libcap
|
||||
, cairo
|
||||
, pango
|
||||
, fontconfig
|
||||
, udev
|
||||
, dbus
|
||||
, gtk2
|
||||
, atk
|
||||
, expat
|
||||
, gdk-pixbuf
|
||||
, freetype
|
||||
, nspr
|
||||
, glib
|
||||
, nss
|
||||
, gconf
|
||||
, libX11
|
||||
, libXrender
|
||||
, libXtst
|
||||
, libXdamage
|
||||
, libXi
|
||||
, libXext
|
||||
, libXfixes
|
||||
, libXcomposite
|
||||
, alsaLib
|
||||
, bash
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -17,10 +44,35 @@ stdenv.mkDerivation rec {
|
||||
|
||||
libPath =
|
||||
stdenv.lib.makeLibraryPath
|
||||
[ libnotify libcap cairo pango fontconfig gtk2 atk expat gdk-pixbuf dbus udev.lib
|
||||
freetype nspr glib stdenv.cc stdenv.cc.cc.lib nss gconf libX11 libXrender libXtst libXdamage
|
||||
libXi libXext libXfixes libXcomposite alsaLib
|
||||
];
|
||||
[
|
||||
libnotify
|
||||
libcap
|
||||
cairo
|
||||
pango
|
||||
fontconfig
|
||||
gtk2
|
||||
atk
|
||||
expat
|
||||
gdk-pixbuf
|
||||
dbus
|
||||
udev.lib
|
||||
freetype
|
||||
nspr
|
||||
glib
|
||||
stdenv.cc
|
||||
stdenv.cc.cc.lib
|
||||
nss
|
||||
gconf
|
||||
libX11
|
||||
libXrender
|
||||
libXtst
|
||||
libXdamage
|
||||
libXi
|
||||
libXext
|
||||
libXfixes
|
||||
libXcomposite
|
||||
alsaLib
|
||||
];
|
||||
|
||||
buildCommand = ''
|
||||
mkdir -p $out/bin/
|
||||
|
Loading…
Reference in New Issue
Block a user