···169 })
170 ```
171000000000000172- Arguments should be listed in the order they are used, with the exception of `lib`, which always goes first.
173174- The top-level `lib` must be used in the master and 21.05 branch over its alias `stdenv.lib` as it now causes evaluation errors when aliases are disabled which is the case for ofborg.
···169 })
170 ```
171172+- Unnecessary string conversions should be avoided. Do
173+174+ ```nix
175+ rev = version;
176+ ```
177+178+ instead of
179+180+ ```nix
181+ rev = "${version}";
182+ ```
183+184- Arguments should be listed in the order they are used, with the exception of `lib`, which always goes first.
185186- The top-level `lib` must be used in the master and 21.05 branch over its alias `stdenv.lib` as it now causes evaluation errors when aliases are disabled which is the case for ofborg.
···23, udev
24, libnotify
25, xdg-utils
026}:
2728# Helper function for building a derivation for Franz and forks.
···48 libXtst
49 libXScrnSaver
50 ]) ++ [
051 gtk3
52 atk
53 glib
···23, udev
24, libnotify
25, xdg-utils
26+, mesa
27}:
2829# Helper function for building a derivation for Franz and forks.
···49 libXtst
50 libXScrnSaver
51 ]) ++ [
52+ mesa #libgbm
53 gtk3
54 atk
55 glib
···18 homepage = "https://github.com/nir0s/distro";
19 description = "Linux Distribution - a Linux OS platform information API.";
20 license = licenses.asl20;
21- maintainers = with maintainers; [ nand0p ];
22 };
23}
···18 homepage = "https://github.com/nir0s/distro";
19 description = "Linux Distribution - a Linux OS platform information API.";
20 license = licenses.asl20;
21+ maintainers = with maintainers; [ ];
22 };
23}
···28 description = "Thin-wrapper around the mock package for easier use with pytest";
29 homepage = "https://github.com/pytest-dev/pytest-mock";
30 license = with licenses; [ mit ];
31- maintainers = with maintainers; [ nand0p ];
32 };
33}
···28 description = "Thin-wrapper around the mock package for easier use with pytest";
29 homepage = "https://github.com/pytest-dev/pytest-mock";
30 license = with licenses; [ mit ];
31+ maintainers = with maintainers; [ ];
32 };
33}
···2425 meta = with lib; {
26 description = "Sphinx extension to include jinja templates in documentation";
27- maintainers = with maintainers; [ nand0p ];
28 license = licenses.mit;
29 };
30}
···2425 meta = with lib; {
26 description = "Sphinx extension to include jinja templates in documentation";
27+ maintainers = with maintainers; [ ];
28 license = licenses.mit;
29 };
30}
+1-1
pkgs/development/python-modules/sphinx/2.nix
···77 description = "A tool that makes it easy to create intelligent and beautiful documentation for Python projects";
78 homepage = "http://sphinx.pocoo.org/";
79 license = lib.licenses.bsd3;
80- maintainers = with lib.maintainers; [ nand0p ];
81 };
82}
···77 description = "A tool that makes it easy to create intelligent and beautiful documentation for Python projects";
78 homepage = "http://sphinx.pocoo.org/";
79 license = lib.licenses.bsd3;
80+ maintainers = with lib.maintainers; [ ];
81 };
82}
···26 meta = with lib; {
27 description = "Sphinx spelling extension";
28 homepage = "https://bitbucket.org/dhellmann/sphinxcontrib-spelling";
29+ maintainers = with maintainers; [ ];
30 license = licenses.bsd2;
31 };
32
+1-1
pkgs/development/python-modules/treq/default.nix
···51 homepage = "https://github.com/twisted/treq";
52 description = "A requests-like API built on top of twisted.web's Agent";
53 license = licenses.mit;
54- maintainers = with maintainers; [ nand0p ];
55 };
56}
···51 homepage = "https://github.com/twisted/treq";
52 description = "A requests-like API built on top of twisted.web's Agent";
53 license = licenses.mit;
54+ maintainers = with maintainers; [ ];
55 };
56}
+1-1
pkgs/development/python-modules/txaio/default.nix
···50 description = "Utilities to support code that runs unmodified on Twisted and asyncio";
51 homepage = "https://github.com/crossbario/txaio";
52 license = licenses.mit;
53- maintainers = with maintainers; [ nand0p ];
54 };
55}
···50 description = "Utilities to support code that runs unmodified on Twisted and asyncio";
51 homepage = "https://github.com/crossbario/txaio";
52 license = licenses.mit;
53+ maintainers = with maintainers; [ ];
54 };
55}
···19 with the final purpose of reducing its ability to interact with the system.
20 '';
21 license = licenses.gpl3;
22- maintainers = with maintainers; [ gnidorah ];
23 };
24}
···19 with the final purpose of reducing its ability to interact with the system.
20 '';
21 license = licenses.gpl3;
22+ maintainers = with maintainers; [ ];
23 };
24}
···17 description = "A utility to accurately report the in core memory usage for a program";
18 homepage = "https://github.com/pixelb/ps_mem";
19 license = licenses.lgpl21;
20- maintainers = [ maintainers.gnidorah ];
21 platforms = platforms.linux;
22 };
23}
···17 description = "A utility to accurately report the in core memory usage for a program";
18 homepage = "https://github.com/pixelb/ps_mem";
19 license = licenses.lgpl21;
20+ maintainers = [ ];
21 platforms = platforms.linux;
22 };
23}
+1
pkgs/top-level/aliases.nix
···440 mathics = throw "mathics has been removed from nixpkgs, as it's unmaintained"; # added 2020-08-15
441 matrique = spectral; # added 2020-01-27
442 mbedtls_1_3 = throw "mbedtls_1_3 is end of life, see https://tls.mbed.org/kb/how-to/upgrade-2.0"; # added 2019-12-08
0443 mess = mame; # added 2019-10-30
444 mcgrid = throw "mcgrid has been removed from nixpkgs, as it's not compatible with rivet 3"; # added 2020-05-23
445 mcomix = throw "mcomix has been removed from nixpkgs, as it's unmaintained; try mcomix3 a Python 3 fork"; # added 2019-12-10, modified 2020-11-25
···440 mathics = throw "mathics has been removed from nixpkgs, as it's unmaintained"; # added 2020-08-15
441 matrique = spectral; # added 2020-01-27
442 mbedtls_1_3 = throw "mbedtls_1_3 is end of life, see https://tls.mbed.org/kb/how-to/upgrade-2.0"; # added 2019-12-08
443+ meme = meme-image-generator; # added 2021-04-21
444 mess = mame; # added 2019-10-30
445 mcgrid = throw "mcgrid has been removed from nixpkgs, as it's not compatible with rivet 3"; # added 2020-05-23
446 mcomix = throw "mcomix has been removed from nixpkgs, as it's unmaintained; try mcomix3 a Python 3 fork"; # added 2019-12-10, modified 2020-11-25