···882882 </listitem>883883 <listitem>884884 <para>885885+ <literal>qtile</literal> hase been updated from886886+ <quote>0.16.0</quote> to <quote>0.18.0</quote>, please check887887+ <link xlink:href="https://github.com/qtile/qtile/blob/master/CHANGELOG">qtile888888+ changelog</link> for changes.889889+ </para>890890+ </listitem>891891+ <listitem>892892+ <para>885893 The <literal>claws-mail</literal> package now references the886894 new GTK+ 3 release branch, major version 4. To use the GTK+ 2887895 releases, one can install the
+2
nixos/doc/manual/release-notes/rl-2111.section.md
···254254255255- `python3` now defaults to Python 3.9. Python 3.9 introduces many deprecation warnings, please look at the [What's New In Python 3.9 post](https://docs.python.org/3/whatsnew/3.9.html) for more information.256256257257+- `qtile` hase been updated from '0.16.0' to '0.18.0', please check [qtile changelog](https://github.com/qtile/qtile/blob/master/CHANGELOG) for changes.258258+257259- The `claws-mail` package now references the new GTK+ 3 release branch, major version 4. To use the GTK+ 2 releases, one can install the `claws-mail-gtk2` package.258260259261- The wordpress module provides a new interface which allows to use different webservers with the new option [`services.wordpress.webserver`](options.html#opt-services.wordpress.webserver). Currently `httpd` and `nginx` are supported. The definitions of wordpress sites should now be set in [`services.wordpress.sites`](options.html#opt-services.wordpress.sites).
···3131 "Control various aspects of Microsoft Surface devices on Linux from the Command-Line";3232 homepage = "https://github.com/linux-surface/surface-control";3333 license = licenses.mit;3434- maintainers = with maintainers; [ winterqt ];3434+ maintainers = with maintainers; [ ];3535 platforms = platforms.linux;3636 };3737}
···11-{ lib, fetchFromGitHub }:11+{ lib, fetchurl }:2233let44- version = "6.9";55-in fetchFromGitHub rec {44+ version = "7.040";55+in fetchurl rec {66 name = "libertinus-${version}";77+ url = "https://github.com/alerque/libertinus/releases/download/v${version}/Libertinus-${version}.tar.xz";88+ sha256 = "0z658r88p52dyrcslv0wlccw0sw7m5jz8nbqizv95nf7bfw96iyk";7988- owner = "alif-type";99- repo = "libertinus";1010- rev = "v${version}";1010+ downloadToTemp = true;1111+ recursiveHash = true;11121213 postFetch = ''1314 tar xf $downloadedFile --strip=11414- install -m444 -Dt $out/share/fonts/opentype *.otf1515- install -m444 -Dt $out/share/doc/${name} *.txt1515+ install -m644 -Dt $out/share/fonts/opentype static/OTF/*.otf1616 '';1717- sha256 = "0765a7w0askkhrjmjk638gcm9h6fcm1jpaza8iw9afr3sz1s0xlq";18171918 meta = with lib; {2020- description = "A fork of the Linux Libertine and Linux Biolinum fonts";1919+ description = "The Libertinus font family";2120 longDescription = ''2222- Libertinus fonts is a fork of the Linux Libertine and Linux Biolinum fonts2323- that started as an OpenType math companion of the Libertine font family,2424- but grown as a full fork to address some of the bugs in the fonts.2121+ The Libertinus font project began as a fork of the Linux Libertine and2222+ Linux Biolinum fonts. The original impetus was to add an OpenType math2323+ companion to the Libertine font families. Over time it grew into to a2424+ full-fledged fork addressing many of the bugs in the Libertine fonts.2525 '';2626- homepage = "https://github.com/alif-type/libertinus";2626+ homepage = "https://github.com/alerque/libertinus";2727 license = licenses.ofl;2828 maintainers = with maintainers; [ siddharthist ];2929 platforms = platforms.all;
···28282929 # Remove a test that fails to statically link (undefined reference to png and3030 # freetype symbols)3131- postConfigure = lib.optionals static ''3131+ postConfigure = lib.optionalString static ''3232 sed -e '/freetype freetype.c/d' -i ../tests/examples/CMakeLists.txt3333 '';3434
+1-1
pkgs/development/libraries/t1lib/default.nix
···2828 buildInputs = [ libX11 libXaw ];2929 buildFlags = [ "without_doc" ];30303131- postInstall = lib.optional (!stdenv.isDarwin) "chmod +x $out/lib/*.so.*"; # ??3131+ postInstall = lib.optionalString (!stdenv.isDarwin) "chmod +x $out/lib/*.so.*"; # ??32323333 meta = with lib; {3434 description = "A type 1 font rasterizer library for UNIX/X11";
···11+diff --git a/buildconfig/config_darwin.py b/buildconfig/config_darwin.py22+index 8d84683f..70df8f9c 10064433+--- a/buildconfig/config_darwin.py44++++ b/buildconfig/config_darwin.py55+@@ -56,10 +56,10 @@ class Dependency:66+ class FrameworkDependency(Dependency):77+ def configure(self, incdirs, libdirs):88+ BASE_DIRS = '/', os.path.expanduser('~/'), '/System/'99+- for n in BASE_DIRS:1010++ for n in incdirs + libdirs:1111+ n += 'Library/Frameworks/'1212+ fmwk = n + self.libs + '.framework/Versions/Current/'1313+- if os.path.isfile(fmwk + self.libs):1414++ if os.path.isfile(fmwk + self.libs + '.tbd'):1515+ print ('Framework ' + self.libs + ' found')1616+ self.found = 11717+ self.inc_dir = fmwk + 'Headers'1818+@@ -158,19 +158,8 @@ def main(sdl2=False):1919+ ])2020+2121+ print ('Hunting dependencies...')2222+- incdirs = ['/usr/local/include']2323+- if sdl2:2424+- incdirs.append('/usr/local/include/SDL2')2525+- else:2626+- incdirs.append('/usr/local/include/SDL')2727+-2828+- incdirs.extend([2929+- #'/usr/X11/include',3030+- '/opt/local/include',3131+- '/opt/local/include/freetype2/freetype']3232+- )3333+- #libdirs = ['/usr/local/lib', '/usr/X11/lib', '/opt/local/lib']3434+- libdirs = ['/usr/local/lib', '/opt/local/lib']3535++ incdirs = @buildinputs_include@3636++ libdirs = @buildinputs_lib@3737+3838+ for d in DEPS:3939+ if isinstance(d, (list, tuple)):4040+diff --git a/buildconfig/config_unix.py b/buildconfig/config_unix.py4141+index f6a4ea4b..f7f5be76 1006444242+--- a/buildconfig/config_unix.py4343++++ b/buildconfig/config_unix.py4444+@@ -224,18 +224,8 @@ def main(sdl2=False):4545+ if not DEPS[0].found:4646+ raise RuntimeError('Unable to run "sdl-config". Please make sure a development version of SDL is installed.')4747+4848+- incdirs = []4949+- libdirs = []5050+- for extrabase in extrabases:5151+- incdirs += [extrabase + d for d in origincdirs]5252+- libdirs += [extrabase + d for d in origlibdirs]5353+- incdirs += ["/usr"+d for d in origincdirs]5454+- libdirs += ["/usr"+d for d in origlibdirs]5555+- incdirs += ["/usr/local"+d for d in origincdirs]5656+- libdirs += ["/usr/local"+d for d in origlibdirs]5757+- if localbase:5858+- incdirs = [localbase+d for d in origincdirs]5959+- libdirs = [localbase+d for d in origlibdirs]6060++ incdirs = @buildinputs_include@6161++ libdirs = @buildinputs_lib@6262+6363+ for arg in DEPS[0].cflags.split():6464+ if arg[:2] == '-I':