···23{
4 name = "searx";
5- meta = with pkgs.stdenv.lib.maintainers; {
6 maintainers = [ rnhmjoj ];
7 };
8
···23{
4 name = "searx";
5+ meta = with pkgs.lib.maintainers; {
6 maintainers = [ rnhmjoj ];
7 };
8
+4-4
pkgs/applications/editors/texmaker/default.nix
···24 meta = with lib; {
25 description = "TeX and LaTeX editor";
26 longDescription=''
27- This editor is a full fledged IDE for TeX and
28- LaTeX editing with completion, structure viewer, preview,
29- spell checking and support of any compilation chain.
30- '';
31 homepage = "http://www.xm1math.net/texmaker/";
32 license = licenses.gpl2Plus;
33 platforms = platforms.linux;
···24 meta = with lib; {
25 description = "TeX and LaTeX editor";
26 longDescription=''
27+ This editor is a full fledged IDE for TeX and
28+ LaTeX editing with completion, structure viewer, preview,
29+ spell checking and support of any compilation chain.
30+ '';
31 homepage = "http://www.xm1math.net/texmaker/";
32 license = licenses.gpl2Plus;
33 platforms = platforms.linux;
+8-8
pkgs/applications/graphics/animbar/default.nix
···22 meta = with lib; {
23 description = "Create your own animation on paper and transparancy";
24 longDescription = ''
25- Animbar lets you easily create your own animation on paper and
26- transparancy. From a set of input images two output images are
27- computed, that are printed one on paper and one on
28- transparency. By moving the transparency over the paper you
29- create a fascinating animation effect. This kind of animation
30- technique is hundreds of years old and known under several
31- names: picket fence animation, barrier grid animation, Moiré
32- animation, to name a few.
33 '';
34 homepage = "http://animbar.mnim.org";
35 maintainers = with maintainers; [ leenaars ];
···22 meta = with lib; {
23 description = "Create your own animation on paper and transparancy";
24 longDescription = ''
25+ Animbar lets you easily create your own animation on paper and
26+ transparancy. From a set of input images two output images are
27+ computed, that are printed one on paper and one on
28+ transparency. By moving the transparency over the paper you
29+ create a fascinating animation effect. This kind of animation
30+ technique is hundreds of years old and known under several
31+ names: picket fence animation, barrier grid animation, Moiré
32+ animation, to name a few.
33 '';
34 homepage = "http://animbar.mnim.org";
35 maintainers = with maintainers; [ leenaars ];
···18 creating reports from databases and other data sources that produce csv files.
19 csv2odf can be combined with cron and shell scripts to automatically generate
20 business reports.
21-22 The output format (fonts, number formatting, etc.) is controlled by a
23 template file that you can design in your office application of choice.
24 '';
···18 creating reports from databases and other data sources that produce csv files.
19 csv2odf can be combined with cron and shell scripts to automatically generate
20 business reports.
21+22 The output format (fonts, number formatting, etc.) is controlled by a
23 template file that you can design in your office application of choice.
24 '';
···21 longDescription =
22 '' Xearth sets the X root window to an image of the Earth, as seen from your favorite vantage point in space,
23 correctly shaded for the current position of the Sun.
24- By default, xearth updates the displayed image every five minutes.
25 '';
26 maintainers = [ maintainers.mafo ];
27 license = "xearth";
···21 longDescription =
22 '' Xearth sets the X root window to an image of the Earth, as seen from your favorite vantage point in space,
23 correctly shaded for the current position of the Sun.
24+ By default, xearth updates the displayed image every five minutes.
25 '';
26 maintainers = [ maintainers.mafo ];
27 license = "xearth";
···20 };
2122 nativeBuildInputs = [ wrapGAppsHook ];
23-24 buildInputs = [ unzip gsettings-desktop-schemas gtk3 ];
25-26 installPhase = ''
27 mkdir -p $out/bin \
28 $out/opt/${pname}
···38 description = "The Betaflight flight control system configuration tool";
39 longDescription = ''
40 A crossplatform configuration tool for the Betaflight flight control system.
41- Various types of aircraft are supported by the tool and by Betaflight, e.g.
42 quadcopters, hexacopters, octocopters and fixed-wing aircraft.
43 '';
44 homepage = "https://github.com/betaflight/betaflight/wiki";
···20 };
2122 nativeBuildInputs = [ wrapGAppsHook ];
23+24 buildInputs = [ unzip gsettings-desktop-schemas gtk3 ];
25+26 installPhase = ''
27 mkdir -p $out/bin \
28 $out/opt/${pname}
···38 description = "The Betaflight flight control system configuration tool";
39 longDescription = ''
40 A crossplatform configuration tool for the Betaflight flight control system.
41+ Various types of aircraft are supported by the tool and by Betaflight, e.g.
42 quadcopters, hexacopters, octocopters and fixed-wing aircraft.
43 '';
44 homepage = "https://github.com/betaflight/betaflight/wiki";
···4# each is an url for sync
56# selector is mtn selector, like h:org.example.branch
7-#
8{name ? "mtn-checkout", dbs ? [], sha256
9, selector ? "h:" + branch, branch}:
10
···4# each is an url for sync
56# selector is mtn selector, like h:org.example.branch
7+#
8{name ? "mtn-checkout", dbs ? [], sha256
9, selector ? "h:" + branch, branch}:
10
+1-1
pkgs/data/documentation/rnrs/common.nix
···910 buildInputs = [ texinfo ];
1112- # Tell the builder about the name of the report.
13 reportName = name;
1415 builder = ./builder.sh;
···910 buildInputs = [ texinfo ];
1112+ # Tell the builder about the name of the report.
13 reportName = name;
1415 builder = ./builder.sh;
···17 meta = with stdenv.lib; {
18 description = "SDL graphics drawing primitives and support functions";
1920- longDescription =
21- '' The SDL_gfx library evolved out of the SDL_gfxPrimitives code
22- which provided basic drawing routines such as lines, circles or
23- polygons and SDL_rotozoom which implemented a interpolating
24- rotozoomer for SDL surfaces.
2526- The current components of the SDL_gfx library are:
2728- * Graphic Primitives (SDL_gfxPrimitves.h)
29- * Rotozoomer (SDL_rotozoom.h)
30- * Framerate control (SDL_framerate.h)
31- * MMX image filters (SDL_imageFilter.h)
32- * Custom Blit functions (SDL_gfxBlitFunc.h)
3334- The library is backwards compatible to the above mentioned
35- code. Its is written in plain C and can be used in C++ code.
36- '';
3738 homepage = "https://sourceforge.net/projects/sdlgfx/";
39 license = licenses.zlib;
···17 meta = with stdenv.lib; {
18 description = "SDL graphics drawing primitives and support functions";
1920+ longDescription = ''
21+ The SDL_gfx library evolved out of the SDL_gfxPrimitives code
22+ which provided basic drawing routines such as lines, circles or
23+ polygons and SDL_rotozoom which implemented a interpolating
24+ rotozoomer for SDL surfaces.
2526+ The current components of the SDL_gfx library are:
2728+ * Graphic Primitives (SDL_gfxPrimitves.h)
29+ * Rotozoomer (SDL_rotozoom.h)
30+ * Framerate control (SDL_framerate.h)
31+ * MMX image filters (SDL_imageFilter.h)
32+ * Custom Blit functions (SDL_gfxBlitFunc.h)
3334+ The library is backwards compatible to the above mentioned
35+ code. Its is written in plain C and can be used in C++ code.
36+ '';
3738 homepage = "https://sourceforge.net/projects/sdlgfx/";
39 license = licenses.zlib;
···35 outputsToInstall = [ "out" ];
36 description = "The datastructures of ELF according to the target platform's libc";
37 longDescription = ''
38- The Executable and Linkable Format (ELF, formerly named Extensible Linking
39- Format), is usually defined in a header like this.
40- '';
41 platforms = lib.platforms.all;
42 maintainers = [ lib.maintainers.ericson2314 ];
43 };
···35 outputsToInstall = [ "out" ];
36 description = "The datastructures of ELF according to the target platform's libc";
37 longDescription = ''
38+ The Executable and Linkable Format (ELF, formerly named Extensible Linking
39+ Format), is usually defined in a header like this.
40+ '';
41 platforms = lib.platforms.all;
42 maintainers = [ lib.maintainers.ericson2314 ];
43 };
···19 make x11-dist-install PREFIX=$out
20 mv $out/lib/libglfw.so $out/lib/libglfw.so.2
21 ln -s libglfw.so.2 $out/lib/libglfw.so
22- '';
23-24- meta = with stdenv.lib; {
25 description = "Multi-platform library for creating OpenGL contexts and managing input, including keyboard, mouse, joystick and time";
26 homepage = "http://glfw.sourceforge.net/";
27 license = licenses.zlib;
···19 make x11-dist-install PREFIX=$out
20 mv $out/lib/libglfw.so $out/lib/libglfw.so.2
21 ln -s libglfw.so.2 $out/lib/libglfw.so
22+ '';
23+24+ meta = with stdenv.lib; {
25 description = "Multi-platform library for creating OpenGL contexts and managing input, including keyboard, mouse, joystick and time";
26 homepage = "http://glfw.sourceforge.net/";
27 license = licenses.zlib;
+7-7
pkgs/development/libraries/gperftools/default.nix
···1-{ stdenv, fetchurl, fetchpatch, autoreconfHook, libunwind }:
23stdenv.mkDerivation rec {
4 name = "gperftools-2.8";
···20 nativeBuildInputs = [ autoreconfHook ];
2122 # tcmalloc uses libunwind in a way that works correctly only on non-ARM linux
23- buildInputs = stdenv.lib.optional (stdenv.isLinux && !(stdenv.isAarch64 || stdenv.isAarch32)) libunwind;
2425 # Disable general dynamic TLS on AArch to support dlopen()'ing the library:
26 # https://bugzilla.redhat.com/show_bug.cgi?id=1483558
27- configureFlags = stdenv.lib.optional (stdenv.isAarch32 || stdenv.isAarch64)
28 "--disable-general-dynamic-tls";
2930- prePatch = stdenv.lib.optionalString stdenv.isDarwin ''
31 substituteInPlace Makefile.am --replace stdc++ c++
32 substituteInPlace Makefile.in --replace stdc++ c++
33 substituteInPlace libtool --replace stdc++ c++
34 '';
3536- NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin
37- "-D_XOPEN_SOURCE -Wno-aligned-allocation-unavailable";
3839 # some packages want to link to the static tcmalloc_minimal
40 # to drop the runtime dependency on gperftools
···4243 enableParallelBuilding = true;
4445- meta = with stdenv.lib; {
46 homepage = "https://github.com/gperftools/gperftools";
47 description = "Fast, multi-threaded malloc() and nifty performance analysis tools";
48 platforms = with platforms; linux ++ darwin;
···1+{ stdenv, lib, fetchurl, fetchpatch, autoreconfHook, libunwind }:
23stdenv.mkDerivation rec {
4 name = "gperftools-2.8";
···20 nativeBuildInputs = [ autoreconfHook ];
2122 # tcmalloc uses libunwind in a way that works correctly only on non-ARM linux
23+ buildInputs = lib.optional (stdenv.isLinux && !(stdenv.isAarch64 || stdenv.isAarch32)) libunwind;
2425 # Disable general dynamic TLS on AArch to support dlopen()'ing the library:
26 # https://bugzilla.redhat.com/show_bug.cgi?id=1483558
27+ configureFlags = lib.optional (stdenv.isAarch32 || stdenv.isAarch64)
28 "--disable-general-dynamic-tls";
2930+ prePatch = lib.optionalString stdenv.isDarwin ''
31 substituteInPlace Makefile.am --replace stdc++ c++
32 substituteInPlace Makefile.in --replace stdc++ c++
33 substituteInPlace libtool --replace stdc++ c++
34 '';
3536+ NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin
37+ "-D_XOPEN_SOURCE";
3839 # some packages want to link to the static tcmalloc_minimal
40 # to drop the runtime dependency on gperftools
···4243 enableParallelBuilding = true;
4445+ meta = with lib; {
46 homepage = "https://github.com/gperftools/gperftools";
47 description = "Fast, multi-threaded malloc() and nifty performance analysis tools";
48 platforms = with platforms; linux ++ darwin;
+1-1
pkgs/development/libraries/hyperscan/default.nix
···5354 Hyperscan uses hybrid automata techniques to allow simultaneous
55 matching of large numbers (up to tens of thousands) of regular
56- expressions and for the matching of regular expressions across
57 streams of data.
5859 Hyperscan is typically used in a DPI library stack.
···5354 Hyperscan uses hybrid automata techniques to allow simultaneous
55 matching of large numbers (up to tens of thousands) of regular
56+ expressions and for the matching of regular expressions across
57 streams of data.
5859 Hyperscan is typically used in a DPI library stack.
···8 description = "C++ utility library from Code Synthesis";
9 longDescription = ''
10 libcutl is a C++ utility library.
11- It contains a collection of generic and independent components such as
12 meta-programming tests, smart pointers, containers, compiler building blocks, etc.
13 '';
14 homepage = "https://codesynthesis.com/projects/libcutl/";
···8 description = "C++ utility library from Code Synthesis";
9 longDescription = ''
10 libcutl is a C++ utility library.
11+ It contains a collection of generic and independent components such as
12 meta-programming tests, smart pointers, containers, compiler building blocks, etc.
13 '';
14 homepage = "https://codesynthesis.com/projects/libcutl/";
···1516 doCheck = true;
17 checkTarget = "test";
18-19 installFlags = [ "PREFIX=$(out)" ];
2021 # fix the libtheft.pc file to use the right installation
···26 substituteInPlace $out/lib/pkgconfig/libtheft.pc \
27 --replace "/usr/local" "$out"
28 '';
29-30 meta = with stdenv.lib; {
31 description = "A C library for property-based testing";
32 homepage = "https://github.com/silentbicycle/theft/";
···1516 doCheck = true;
17 checkTarget = "test";
18+19 installFlags = [ "PREFIX=$(out)" ];
2021 # fix the libtheft.pc file to use the right installation
···26 substituteInPlace $out/lib/pkgconfig/libtheft.pc \
27 --replace "/usr/local" "$out"
28 '';
29+30 meta = with stdenv.lib; {
31 description = "A C library for property-based testing";
32 homepage = "https://github.com/silentbicycle/theft/";
+2-2
pkgs/development/libraries/tix/default.nix
···7 url = "mirror://sourceforge/tix/tix/8.4.3/Tix8.4.3-src.tar.gz";
8 sha256 = "1jq3dkyk9mqkj4cg7mdk5r0cclqsby9l2b7wrysi0zk5yw7h8bsn";
9 };
10- patches = [
11 (fetchpatch {
12 name = "tix-8.4.3-tcl8.5.patch";
13 url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/dev-tcltk/tix/files/tix-8.4.3-tcl8.5.patch?id=56bd759df1d0c750a065b8c845e93d5dfa6b549d";
···23 buildInputs = [ tcl tk ];
24 # the configure script expects to find the location of the sources of
25 # tcl and tk in {tcl,tk}Config.sh
26- # In fact, it only needs some private headers. We copy them in
27 # the private_headers folders and trick the configure script into believing
28 # the sources are here.
29 preConfigure = ''
···7 url = "mirror://sourceforge/tix/tix/8.4.3/Tix8.4.3-src.tar.gz";
8 sha256 = "1jq3dkyk9mqkj4cg7mdk5r0cclqsby9l2b7wrysi0zk5yw7h8bsn";
9 };
10+ patches = [
11 (fetchpatch {
12 name = "tix-8.4.3-tcl8.5.patch";
13 url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/dev-tcltk/tix/files/tix-8.4.3-tcl8.5.patch?id=56bd759df1d0c750a065b8c845e93d5dfa6b549d";
···23 buildInputs = [ tcl tk ];
24 # the configure script expects to find the location of the sources of
25 # tcl and tk in {tcl,tk}Config.sh
26+ # In fact, it only needs some private headers. We copy them in
27 # the private_headers folders and trick the configure script into believing
28 # the sources are here.
29 preConfigure = ''
···41 MkDocs is a fast, simple and downright gorgeous static site generator that's
42 geared towards building project documentation. Documentation source files
43 are written in Markdown, and configured with a single YAML configuration file.
44-45 MkDocs can also be used to generate general-purpose Websites.
46 '';
47 homepage = "http://mkdocs.org/";
···41 MkDocs is a fast, simple and downright gorgeous static site generator that's
42 geared towards building project documentation. Documentation source files
43 are written in Markdown, and configured with a single YAML configuration file.
44+45 MkDocs can also be used to generate general-purpose Websites.
46 '';
47 homepage = "http://mkdocs.org/";
···13 # NOTE: Don't forget to update the webarchive link too!
14 urls = [
15 "https://download.ebz.epson.net/dsc/op/stable/SRPMS/epson-inkjet-printer-201106w-${version}-1lsb3.2.src.rpm"
16- "https://web.archive.org/web/https://download.ebz.epson.net/dsc/op/stable/SRPMS/epson-inkjet-printer-201106w-${version}-1lsb3.2.src.rpm"
17 ];
1819 sha256 = "1yig1xrh1ikblbp7sx706n5nnc237wy4mbch23ymy6akbgqg4aig";
···13 # NOTE: Don't forget to update the webarchive link too!
14 urls = [
15 "https://download.ebz.epson.net/dsc/op/stable/SRPMS/epson-inkjet-printer-201106w-${version}-1lsb3.2.src.rpm"
16+ "https://web.archive.org/web/https://download.ebz.epson.net/dsc/op/stable/SRPMS/epson-inkjet-printer-201106w-${version}-1lsb3.2.src.rpm"
17 ];
1819 sha256 = "1yig1xrh1ikblbp7sx706n5nnc237wy4mbch23ymy6akbgqg4aig";
+1-1
pkgs/misc/drivers/epson-escpr/default.nix
···8 # To find new versions, visit
9 # http://download.ebz.epson.net/dsc/search/01/search/?OSC=LX and search for
10 # some printer like for instance "WF-7110" to get to the most recent
11- # version.
12 # NOTE: Don't forget to update the webarchive link too!
13 urls = [
14 "https://download3.ebz.epson.net/dsc/f/03/00/09/83/26/f90d0f70b33a9d7d77a2408364c47fba1ccbf943/epson-inkjet-printer-escpr-1.7.3-1lsb3.2.tar.gz"
···8 # To find new versions, visit
9 # http://download.ebz.epson.net/dsc/search/01/search/?OSC=LX and search for
10 # some printer like for instance "WF-7110" to get to the most recent
11+ # version.
12 # NOTE: Don't forget to update the webarchive link too!
13 urls = [
14 "https://download3.ebz.epson.net/dsc/f/03/00/09/83/26/f90d0f70b33a9d7d77a2408364c47fba1ccbf943/epson-inkjet-printer-escpr-1.7.3-1lsb3.2.tar.gz"
+1-1
pkgs/misc/drivers/epson-escpr2/default.nix
···8 # To find new versions, visit
9 # http://download.ebz.epson.net/dsc/search/01/search/?OSC=LX and search for
10 # some printer like for instance "WF-7210" to get to the most recent
11- # version.
12 # NOTE: Don't forget to update the webarchive link too!
13 urls = [
14 "https://download3.ebz.epson.net/dsc/f/03/00/12/09/63/b7d2bb6a97c9ad99a96ebc68f8abcb1254888e94/epson-inkjet-printer-escpr2-1.1.24-1lsb3.2.src.rpm"
···8 # To find new versions, visit
9 # http://download.ebz.epson.net/dsc/search/01/search/?OSC=LX and search for
10 # some printer like for instance "WF-7210" to get to the most recent
11+ # version.
12 # NOTE: Don't forget to update the webarchive link too!
13 urls = [
14 "https://download3.ebz.epson.net/dsc/f/03/00/12/09/63/b7d2bb6a97c9ad99a96ebc68f8abcb1254888e94/epson-inkjet-printer-escpr2-1.1.24-1lsb3.2.src.rpm"
+5-5
pkgs/misc/drivers/epson_201207w/default.nix
···63 Epson L550 Series
64 Epson L555 Series
6566- To use the driver adjust your configuration.nix file:
67- services.printing = {
68- enable = true;
69- drivers = [ pkgs.epson_201207w ];
70- };
71 '';
72 license = with licenses; [ lgpl21 epson ];
73 maintainers = [ maintainers.romildo ];
···63 Epson L550 Series
64 Epson L555 Series
6566+ To use the driver adjust your configuration.nix file:
67+ services.printing = {
68+ enable = true;
69+ drivers = [ pkgs.epson_201207w ];
70+ };
71 '';
72 license = with licenses; [ lgpl21 epson ];
73 maintainers = [ maintainers.romildo ];
···48 Bcache is a Linux kernel block layer cache. It allows one or more fast
49 disk drives such as flash-based solid state drives (SSDs) to act as a
50 cache for one or more slower hard disk drives.
51-52 This package contains the required user-space tools.
5354 User documentation is in Documentation/bcache.txt in the Linux kernel
···48 Bcache is a Linux kernel block layer cache. It allows one or more fast
49 disk drives such as flash-based solid state drives (SSDs) to act as a
50 cache for one or more slower hard disk drives.
51+52 This package contains the required user-space tools.
5354 User documentation is in Documentation/bcache.txt in the Linux kernel
+1-1
pkgs/tools/filesystems/ext4magic/default.nix
···2829 If the information in the journal are sufficient, ext4magic can
30 recover the most file types, with original filename, owner and group,
31- file mode bits and also the old atime/mtime stamps.
3233 It's much more effective and works much better than extundelete.
34 '';
···2829 If the information in the journal are sufficient, ext4magic can
30 recover the most file types, with original filename, owner and group,
31+ file mode bits and also the old atime/mtime stamps.
3233 It's much more effective and works much better than extundelete.
34 '';
···35 scanbd polls a scanner's buttons, looking for button presses, function
36 knob changes, or other scanner events such as paper inserts and removals,
37 while at the same time allowing scan-applications to access the scanner.
38-39 Various actions can be submitted (scan, copy, email, ...) via action
40 scripts. The function knob values are passed to the action scripts as
41 well. Scan actions are also signaled via dbus. This can be useful for
42 foreign applications. Scans can also be triggered via dbus from foreign
43 applications.
44-45 On platforms which support signaling of dynamic device insertion/removal
46 (libudev, dbus, hal), scanbd supports this as well.
4748 scanbd can use all sane-backends or some special backends from the (old)
49- scanbuttond project.
50 '';
51 homepage = "http://scanbd.sourceforge.net/";
52 downloadPage = "https://sourceforge.net/projects/scanbd/";
···35 scanbd polls a scanner's buttons, looking for button presses, function
36 knob changes, or other scanner events such as paper inserts and removals,
37 while at the same time allowing scan-applications to access the scanner.
38+39 Various actions can be submitted (scan, copy, email, ...) via action
40 scripts. The function knob values are passed to the action scripts as
41 well. Scan actions are also signaled via dbus. This can be useful for
42 foreign applications. Scans can also be triggered via dbus from foreign
43 applications.
44+45 On platforms which support signaling of dynamic device insertion/removal
46 (libudev, dbus, hal), scanbd supports this as well.
4748 scanbd can use all sane-backends or some special backends from the (old)
49+ scanbuttond project.
50 '';
51 homepage = "http://scanbd.sourceforge.net/";
52 downloadPage = "https://sourceforge.net/projects/scanbd/";
···1213 meta = with lib; {
14 description = "A 'top' like tool for PostgreSQL";
15- longDescription = ''
16- pg_top allows you to:
17 * View currently running SQL statement of a process.
18 * View query plan of a currently running SQL statement.
19 * View locks held by a process.
···1213 meta = with lib; {
14 description = "A 'top' like tool for PostgreSQL";
15+ longDescription = ''
16+ pg_top allows you to:
17 * View currently running SQL statement of a process.
18 * View query plan of a currently running SQL statement.
19 * View locks held by a process.
+2-2
pkgs/tools/misc/pubs/default.nix
···12 };
1314 propagatedBuildInputs = with python3Packages; [
15- argcomplete dateutil configobj feedparser bibtexparser pyyaml requests six
16 beautifulsoup4
17 ];
1819 checkInputs = with python3Packages; [ pyfakefs mock ddt ];
2021 # Disabling git tests because they expect git to be preconfigured
22- # with the user's details. See
23 # https://github.com/NixOS/nixpkgs/issues/94663
24 preCheck = ''
25 rm tests/test_git.py
···12 };
1314 propagatedBuildInputs = with python3Packages; [
15+ argcomplete dateutil configobj feedparser bibtexparser pyyaml requests six
16 beautifulsoup4
17 ];
1819 checkInputs = with python3Packages; [ pyfakefs mock ddt ];
2021 # Disabling git tests because they expect git to be preconfigured
22+ # with the user's details. See
23 # https://github.com/NixOS/nixpkgs/issues/94663
24 preCheck = ''
25 rm tests/test_git.py
+1-1
pkgs/tools/misc/rargs/default.nix
···19 description = "xargs + awk with pattern matching support";
20 homepage = "https://github.com/lolabout/rargs";
21 license = with licenses; [ mit ];
22- maintainers = with maintainers; [ pblkt ];
23 };
24}
···19 description = "xargs + awk with pattern matching support";
20 homepage = "https://github.com/lolabout/rargs";
21 license = with licenses; [ mit ];
22+ maintainers = with maintainers; [ pblkt ];
23 };
24}