Commit graph

59559 commits

Author SHA1 Message Date
Sandro 9ca28714c8
Merge pull request #119086 from fabaff/hfinger
hfinger: init at 0.2.0
2021-04-11 16:13:06 +02:00
Sandro 7cc6af3955
Merge pull request #119074 from fabaff/aioemonitor
python3Packages.aioemonitor: init at 1.0.5
2021-04-11 16:03:13 +02:00
Fabian Affolter a9dc1be62f python3Packages.nexia: init at 0.9.6 2021-04-11 15:41:07 +02:00
Fabian Affolter d93a794679 python3Packages.pylutron-caseta: init at 0.9.0 2021-04-11 15:23:43 +02:00
Fabian Affolter 76019785f6 python3Packages.aiolip: init at 1.1.4 2021-04-11 15:23:43 +02:00
Fabian Affolter 7875699b7e python3Packages.pythonegardia: init at 1.0.40 2021-04-11 14:04:39 +02:00
Mauricio Scheffer 5fbed8bc85 tf2pulumi: init at 0.10.0 2021-04-11 12:53:28 +01:00
Fabian Affolter c17a2151bb python3Packages.pyemby: init at 1.7 2021-04-11 13:38:19 +02:00
Fabian Affolter 266a1baa49 python3Packages.pycomfoconnect: init at 0.4 2021-04-11 12:52:34 +02:00
Hubert Jasudowicz fac3725e5b pythonPackages.karton-core: init at 4.2.0 2021-04-11 12:32:08 +02:00
sterni 2140791f9b
ocamlPackages.janeStreet{,_0_9_0}: join the ocamlPackages fix point, allowing overriding to work as expected (#113696)
* ocamlPackages.janeStreet_0_9_0: join the ocamlPackages fix point

Internal dependencies in the janeStreet sets were always taken from the
own rec attribute set. While this is pretty simple and convenient, it
has the disadvantage that it doesn't play nice with overriding: If you'd
override an attribute in a janeStreet set previously, it would be
changed when referenced directly, but the other packages in that
janeStreet set still would use the original, non-overridden version of
the derivation.

This is easily fixed by passing janeStreet_0_9_0 itself from the fix
point of ocamlPackages and using it to reference the dependencies.

Example showing it now works as expected:

test-overlay.nix:

    self: super: {
      ocamlPackages = super.ocamlPackages.overrideScope (old: _: {
        janeStreet_0_9_0 = old.janeStreet_0_9_0 // {
          base = old.janeStreet_0_9_0.base.overrideAttrs (_: {
            meta.broken = true;
          });
        };
      });
    }

nix-repl> (import ./. {
  overlays = [ (import ./test-overlay.nix) ];
}).ocamlPackages.janeStreet_0_9_0.stdio

error: Package ‘ocaml4.10.0-base-0.9.4’ in /home/lukas/src/nix/nixpkgs/pkgs/development/ocaml-modules/janestreet/janePackage.nix:6 is marked as broken, refusing to evaluate.

a) To temporarily allow broken packages, you can use an environment variable
   for a single invocation of the nix tools.

     $ export NIXPKGS_ALLOW_BROKEN=1

b) For `nixos-rebuild` you can set
  { nixpkgs.config.allowBroken = true; }
in configuration.nix to override this.

c) For `nix-env`, `nix-build`, `nix-shell` or any other Nix command you can add
  { allowBroken = true; }
to ~/.config/nixpkgs/config.nix.

* ocamlPackages.janeStreet: take part in fixpoint for OCaml >= 4.08

This change makes overrides to the janeStreet set work as expected by
making the janeStreet set take part in the ocamlPackages fixpoint for
janeStreet 0.14, i. e. OCaml >= 4.08

* ocamlPackages.janeStreet: take part in fixpoint for OCaml == 4.07

This change makes overrides to the janeStreet set work as expected by
making the janeStreet set take part in the ocamlPackages fixpoint for
janeStreet 0.12, i. e. OCaml == 4.07

* ocamlPackages.janeStreet: take part in fixpoint for OCaml < 4.07

This change makes overrides to the janeStreet set work as expected by
making the janeStreet set take part in the ocamlPackages fixpoint for
janeStreet 0.11, i. e. OCaml < 4.07

* ocamlPackages.janeStreet: remove self - super distinction

Previously, we inherited non-janestreet ocaml dependencies from super
and janestreet dependencies from self which always was super.janeStreet.

This behavior is however not really what we want due to liftJaneStreet:
Users and other packages will use ocamlPackages.base etc. instead of
ocamlPackages.janeStreet.base and the like. Consequently they also would
override the top-level attributes which would mean that other janestreet
packages would not pick up on it however.

As a consequence however, overriding ocamlPackages.janeStreet.base
doesn't work. Since this was never possible, I don't think this is an
issue. It is probably a good idea to deprecate that set anyways and
printing a warning when it is used via trace.

janeStreet_0_9_0 is unchanged as the disticniton between self and super
makes sense for it.

Below is an example showing how overriding would work from an user's
perspective:

test-overlay.nix:

    self: super: {
      ocamlPackages = super.ocamlPackages.overrideScope (old: _: {
        base = old.base.overrideAttrs (_: {
          meta.broken = true;
        });
      });
    }

nix-repl> (import ./. { overlays = [ (import ./test-overlay.nix) ]; }).ocamlPackages.
stdio
error: Package ‘ocaml4.10.0-base-0.14.0’ in /home/lukas/src/nix/nixpkgs/pkgs/development/ocaml-modules/janestreet/janePackage_0_14.nix:12 is marked as broken, refusing to evaluate.

a) To temporarily allow broken packages, you can use an environment variable
   for a single invocation of the nix tools.

     $ export NIXPKGS_ALLOW_BROKEN=1

b) For `nixos-rebuild` you can set
  { nixpkgs.config.allowBroken = true; }
in configuration.nix to override this.

c) For `nix-env`, `nix-build`, `nix-shell` or any other Nix command you can add
  { allowBroken = true; }
to ~/.config/nixpkgs/config.nix.
2021-04-11 12:26:10 +02:00
Alyssa Ross 441f0c894a mdevd: init at 0.1.3.0 2021-04-11 10:22:29 +00:00
Julien Moutinho 687e55bfc0 ifcopenshell: 0.6.0b0 -> 210410 2021-04-11 12:10:46 +02:00
Fabian Affolter 1a3dce63c3 apkid: init at 2.1.1 2021-04-11 01:37:23 +02:00
Fabian Affolter 36d4934c39 python3Packages.yara-python: init at 4.0.5 2021-04-11 01:35:08 +02:00
Fabian Affolter 0b78980d67 python3Packages.pyenvisalink: init at 4.1 2021-04-10 15:31:56 -07:00
Fabian Affolter e5b6e6f289 hfinger: init at 0.2.0 2021-04-11 00:22:19 +02:00
Fabian Affolter fb327d72df python3Packages.pyclimacell: init at 0.18.0 2021-04-10 21:31:54 +02:00
Fabian Affolter fec6f0b152 python3Packages.aioemonitor: init at 1.0.5 2021-04-10 21:11:42 +02:00
Fabian Affolter 926d6ab20d python3Packages.aiosyncthing: init at 0.5.1 2021-04-10 20:44:14 +02:00
Fabian Affolter 124aa02185 python3Packages.expects: init at 0.9.0 2021-04-10 20:41:26 +02:00
Bruno Bigras 6378cdebad syncthing: 1.14.0 -> 1.15.1
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-04-10 14:06:10 -04:00
Nick Bathum e2d7984d8c round: init at v0.0.2
Round image corners from CLI. Used by python diagrams.
2021-04-10 13:12:59 -04:00
Fabian Affolter bcb7d810cf python3Packages.pydanfossair: init at 0.1.0 2021-04-10 18:55:57 +02:00
nixinator 3314db5a56
cdogs-sdl: init at 0.11.0 (#118949)
Co-authored-by: Jonathan Ringer <jonringer@users.noreply.github.com>
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-04-10 17:23:57 +02:00
Sandro aa05808456
Merge pull request #117677 from 06kellyjac/octant-desktop 2021-04-10 16:46:25 +02:00
sternenseemann 9c989f2fd9 spacecookie: add top-level attribute for haskellPackages.spacecookie
The haskellPackages.spacecookie derivation also includes a library and
thus a lot of propagated haskell dependencies. The top-level attribute
uses haskell.lib.justStaticExecutables and therefore only the
executable. This should reduce the runtime closure users have to
download considerably if they only want the server.
2021-04-10 15:44:19 +02:00
Robert Schütz c69e6e52e8 python3Packages.pytest-subprocess: init at 1.0.1 2021-04-10 15:36:46 +02:00
Vincent Haupert f4af2f267a
nixos/github-runner: init at v2.277.1 (#116775)
* github-runner: init at 2.277.1

* nixos/github-runner: initial version

* nixos/github-runner: add warning if tokenFile in Nix store

* github-runner: don't accept unexpected attrs

* github-runner: formatting nits

* github-runner: add pre and post hooks to checkPhase

* nixos/github-runner: update ExecStartPre= comment

* nixos/github-runner: adapt tokenFile option description

Also note that not only a change to the option value will trigger a
reconfiguration but also modifications to the file's content.

* nixos/github-runner: remove mkDefault for DynamicUser=

* nixos/github-runner: create a parent for systemd dirs

Adds a parent directory "github-runner/" to all of the systemd lifecycle
directories StateDirectory=, RuntimeDirectory= and LogDirectory=.

Doing this has two motivations:

1. Something like this would required if we want to support multiple
   runners configurations. Please note that this is already possible
   using NixOS containers.
2. Having an additional parent directory makes it easier to remap
   any of the directories. Without a parent, systemd is going to
   complain if, for example, the given StateDirectory= is a symlink.

* nixos/github-runner: use specifier to get abs runtime path

* nixos/github-runner: use hostname as default for option `name`

Until now, the runner registration did not set the `--name` argument if
the configuration option was `null`, the default for the option.
According to GitHub's documentation, this instructs the registration
script to use the machine's hostname.

This commit causes the registration to always pass the `--name` argument
to the runner configuration script. The option now defaults to
`networking.hostName` which should be always set on NixOS.

This change becomes necessary as the systemd service name includes the
name of the runner since fcfa809 and, hence, expects it to be set. Thus,
an unset `name` option leads to an error.

* nixos/github-runner: use types.str for `name` option

Forcing a `name` option to comply with a pattern which could also be
used as a hostname is probably not required by GitHub.

* nixos/github-runner: pass dir paths explicitly for ExecStartPre=

* nixos/github-runner: update variable and script naming

* nixos/github-runner: let systemd choose the user/group

User and group naming restrictions are a complex topic [1] that I don't
even want to touch. Let systemd figure out the username and group and
reference it in our scripts through the USER environment variable.

[1] https://systemd.io/USER_NAMES/

* Revert "nixos/github-runner: use types.str for `name` option"

The escaping applied to the subdirectory paths given to StateDirectory=,
RuntimeDirectory= and LogsDirectory= apparently doesn't use the same
strategy that is used to escape unit names (cf. systemd-escape(1)). This
makes it unreasonably hard to construct reliable paths which work for
StateDirectory=/RuntimeDirectory=/LogsDirectory= and ExecStartPre=.

Against this background, I decided to (re-)apply restrictions to the
name a user might give for the GitHub runner. The pattern for
`networking.hostName` seems like a reasonable choice, also as its value
is the default if the `name` option isn't set.

This reverts commit 193ac67ba337990c22126da24a775c497dbc7e7d.

* nixos/github-runner: use types.path for `tokenFile` option

* nixos/github-runner: escape options used as shell arguments

* nixos/github-runner: wait for network-online.target

* github-runner: ignore additional online tests
2021-04-10 10:17:10 +00:00
gspia 8d75eaf225 kitsas: init at 2.3
Add kitsas, an accounting application

This commit adds an accounting application called kitsas to the
set of packages. Kitsas is suitable for Finnish associations and
small business.

Change meta maintainers

Change the meta license line

Add newlines

Change the top level caller

Start using qmakeFlags

Second review round changes

Change license to non-deprecated one

Typo in the license constant
2021-04-10 07:57:13 +03:00
Martin Weinelt 8735fd1e95
Merge pull request #118944 from fabaff/homematicip
python3Packages.homematicip: init at 1.0.0
2021-04-10 02:19:55 +02:00
Fabian Affolter 7564d5ef16 python3Packages.homematicip: init at 1.0.0 2021-04-10 00:22:23 +02:00
Fabian Affolter c197fdd498 python3Packages.aiohttp-wsgi: init at 0.8.2 2021-04-09 23:44:02 +02:00
Fabian Affolter c5a877a538 python3Packages.pyruckus: init at 0.14 2021-04-09 22:28:30 +02:00
Sandro cbdbd24665
Merge pull request #118919 from fabaff/omnilogic 2021-04-09 21:57:00 +02:00
AndersonTorres cc3060f5e8 yapesdl: init at 0.70.2 2021-04-09 15:31:22 -03:00
Fabian Affolter 409af093e7 python3Packages.pyezviz: init at 0.1.8.7 2021-04-09 19:25:00 +02:00
Fabian Affolter 61a5c65f0d python3Packages.omnilogic: init at 0.4.3 2021-04-09 18:44:41 +02:00
Frederik Rietdijk 0656d546fb
Merge pull request #118312 from NixOS/staging-next
Staging next
2021-04-09 18:29:47 +02:00
Martin Weinelt 79d2bf4c84
Merge pull request #118809 from fabaff/webexteamssdk 2021-04-09 18:01:05 +02:00
Fabian Affolter af602afe9d python3Packages.nad-receiver: init at 0.2.0 2021-04-09 17:53:54 +02:00
Martin Weinelt f882b057be
Merge pull request #111316 from higebu/add-gobgpd 2021-04-09 17:17:07 +02:00
Fabian Affolter 027c28b18a python3Packages.pyintesishome: init at 1.7.7 2021-04-09 17:03:10 +02:00
Yuya Kusakabe 9a2af3baf2
gobpgd: init at 2.26.0 2021-04-09 14:56:31 +00:00
Fabian Affolter 4dc34642e3 python3Packages.webexteamssdk: init at 1.6 2021-04-09 16:44:12 +02:00
github-actions[bot] c876eb99be
Merge master into staging-next 2021-04-09 12:06:22 +00:00
Ben Siraphob 970b82e7d0 coqtail-math: init at 20201124 2021-04-09 10:05:32 +02:00
github-actions[bot] 496c7d3e9d
Merge master into staging-next 2021-04-09 06:05:54 +00:00
Ivan Babrou 300c240afa clickhouse-cli: init at 0.3.7 2021-04-08 19:01:57 -07:00
Sandro 6fc2b7ecc2
Merge pull request #116570 from dnr/gphotos-sync 2021-04-09 02:55:52 +02:00
Sandro e86802afa7
Merge pull request #118694 from benley/kubelogin-oidc
kubelogin-oidc: init at 1.23.0
2021-04-09 02:39:06 +02:00
Sandro d5b46bbaa0
Merge pull request #118723 from oxalica/bump/electron-cash 2021-04-09 02:32:04 +02:00
github-actions[bot] c99b6f5343
Merge master into staging-next 2021-04-09 00:16:01 +00:00
06kellyjac 3141ba7b50 obs-multi-rtmp: init at 0.2.6 2021-04-08 22:20:28 +01:00
Sandro 26f16c1cef
Merge pull request #91318 from stephank/pkg-doh-proxy-rust 2021-04-08 22:32:12 +02:00
github-actions[bot] 85b57e4446
Merge master into staging-next 2021-04-08 18:14:17 +00:00
Robert Schütz 346af47879
Merge pull request #118574 from dotlambda/recoll-python
python3Packages.recoll: init
2021-04-08 18:21:06 +02:00
Michael Weiss 915e3fec91
Merge pull request #116544 from Synthetica9/sway-1.16
wlroots: 1.12 -> 1.13, sway: 1.5 -> 1.6
2021-04-08 17:53:42 +02:00
Patrick Hilhorst e03dde82a7
wlroots: 0.12.0 -> 0.13.0
Pulls in an upstream patch for dwl. Explicitly takes xcbutilrenderutil
as an argument to avoid pulling in all of xorg.
2021-04-08 17:24:23 +02:00
Patrick Hilhorst 49299adf4e
wlroots_0_12: init at 0.12.0
Uses the old wlroots in places where the new one isn't yet compatible.

Co-authored-by: Alyssa Ross <hi@alyssa.is>
Co-authored-by: Michael Weiss <dev.primeos@gmail.com>
2021-04-08 17:23:20 +02:00
Sandro f9544583b6
Merge pull request #118584 from fabaff/nats 2021-04-08 15:40:32 +02:00
midchildan 2e2a36f082
ssh-copy-id: init at 8.4p1 (#105896)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-04-08 14:53:06 +02:00
Jörg Thalheim 8865b1a8ce
Merge pull request #118803 from SuperSandro2000/radare-cleanup
Radare cleanup
2021-04-08 13:45:41 +01:00
Sandro 21264a9367
Merge pull request #116651 from jumper149/master
blucontrol-wrapper: init
2021-04-08 14:26:11 +02:00
Kim Lindberger 5a1bd5ff66
Merge pull request #116074 from talyz/discourse
discourse: Add package and NixOS module
2021-04-08 14:19:49 +02:00
github-actions[bot] bf6abedefb
Merge master into staging-next 2021-04-08 12:06:16 +00:00
austinbutler 5db7e33f1d
python3Packages.awslambdaric: init at 1.0.0 (#118771)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-04-08 13:10:16 +02:00
Sandro Jäckel 1bed0e238c
aliases: add mising date 2021-04-08 13:08:53 +02:00
Philippe Hürlimann 73d596e3f7 foxitreader: init at 2.4.4.0911 2021-04-08 12:37:46 +02:00
Jörg Thalheim 034c49f514
Merge pull request #118041 from Mic92/cutter
cutter: 1.12.0 -> 2.0.0
2021-04-08 11:32:54 +01:00
Sandro 952a87d190
Merge pull request #118796 from Riey/cargo-feature 2021-04-08 12:02:02 +02:00
Riey 6bf4e6b230
cargo-feature: init at 0.5.2 2021-04-08 18:32:24 +09:00
Sandro 65cb4ce042
Merge pull request #118725 from veehaitch/yubikey-manager-4.0.1 2021-04-08 11:29:00 +02:00
Sandro 9f7f61b07f
Merge pull request #118454 from LeSuisse/hdf5-use-v110-api 2021-04-08 11:17:47 +02:00
Sandro 61b8c50e4d
Merge pull request #103816 from wedens/vendor-reset 2021-04-08 09:45:33 +02:00
Lorenz Leutgeb 2bc413b970
gradle: Add 7-rc-2, leave latest pointing at 6.8 (#117462) 2021-04-08 09:24:12 +02:00
Thomas Gerbet 50d604314e python3Packages.tables: use hdf5_1_10 instead of hdf5
Without that, the test suite of python3Packages.pandas segfault.
2021-04-08 08:37:25 +02:00
Thomas Gerbet b9fcaefeb3 hdf5_1_10: init at 1.10.7
Introduce hdf5_1_10 so it can be used by packages encountering issues
hdf5 1.12.0.
2021-04-08 08:35:45 +02:00
github-actions[bot] 0ba1008684
Merge master into staging-next 2021-04-08 06:05:39 +00:00
Anderson Torres 6188b599c2
Merge pull request #117856 from AndersonTorres/new-nodepy
nodepy-runtime: init at 1.7.3; pythonPackages.localimport: init at 1.7.3
2021-04-07 23:41:07 -03:00
AndersonTorres d9ed5352d7 nodepy-runtime: init at 2.1.5 2021-04-07 21:48:45 -03:00
Sandro 0fcc3a1925
Merge pull request #118636 from IvarWithoutBones/init/antsim
antsimulator: init at 1.2
2021-04-08 02:26:52 +02:00
github-actions[bot] 8d1d992273
Merge master into staging-next 2021-04-08 00:17:24 +00:00
Sandro d70959a2e2
Merge pull request #118618 from sikmir/viking
viking: 1.8 → 1.9
2021-04-08 02:13:29 +02:00
Anderson Torres 91aa2b2dce
Merge pull request #117860 from AndersonTorres/new-ronin
pythonPackages.ronin: init at 1.1.1
2021-04-07 21:09:43 -03:00
Martin Weinelt 558235c32c
Merge pull request #118768 from fabaff/pyhomepluscontrol
python3Packages.homepluscontrol: init at 0.0.5
2021-04-08 01:45:12 +02:00
Martin Weinelt 33b025702a
Merge pull request #118767 from fabaff/screenlogicpy
python3Packages.screenlogicpy: init at 0.3.0
2021-04-08 01:33:17 +02:00
Martin Weinelt 7a8fe6244b
Merge pull request #118766 from fabaff/yalexs 2021-04-08 01:32:14 +02:00
Fabian Affolter 7e1a972bc0 python3Packages.homepluscontrol: init at 0.0.5 2021-04-08 01:29:52 +02:00
Martin Weinelt e0b81f0a51
Merge pull request #118176 from fabaff/aiodiscover 2021-04-08 01:27:33 +02:00
Fabian Affolter c33772a781 python3Packages.yalexs: init at 1.1.10 2021-04-08 01:10:17 +02:00
Fabian Affolter 529811ddcb python3Packages.screenlogicpy: init at 0.3.0 2021-04-08 00:57:19 +02:00
Fabian Affolter 61f566d45b
python3Packages.pytest-raises: init at 0.11 2021-04-08 00:48:46 +02:00
Sandro a6b2b17ceb
Merge pull request #118761 from aanderse/zabbix
zabbix: drop 3.0.32, 4.0.29 -> 4.0.30, 5.0.9 -> 5.0.10
2021-04-07 23:20:51 +02:00
Aaron Andersen 730eabb12a zabbix: drop 3.0.32 which is no longer supported by upstream 2021-04-07 16:39:38 -04:00
Benjamin Staffin f7592006ca kubelogin-oidc: init at 1.23.0 2021-04-07 15:58:33 -04:00
AndersonTorres 34da7899c5 pythonPackages.ronin: init at 1.1.1 2021-04-07 16:34:51 -03:00
Vincent Haupert 0ff4e2a618
pythonPackages.makefun: init at 1.11.2 2021-04-07 21:16:42 +02:00
Alexander Krimm ddfc9e0dc3
scenic-view: init at 11.0.2 2021-04-07 21:12:00 +02:00
Alexander Krimm 91e408f47f
scenebuilder: init at 15.0.0 2021-04-07 21:11:59 +02:00
oxalica 5162507599
pythonPackages.pysatochip: init at 0.11.4 2021-04-07 23:27:18 +08:00
oxalica a81bd15fcf
pythonPackages.pathvalidate: init at 2.4.1 2021-04-07 23:27:18 +08:00
Stéphan Kochen 20481bd027 doh-proxy-rust: init at 0.3.8 2021-04-07 14:23:55 +02:00
github-actions[bot] 1d48804dab
Merge master into staging-next 2021-04-07 12:06:23 +00:00
Sandro a4abe29466
Merge pull request #105165 from ThibautMarty/poweralertd
poweralertd: init at 0.1.0
2021-04-07 10:10:17 +02:00
Jonas Heinrich a0408312e8
krankerl: init at 0.13.0 (#118582) 2021-04-07 10:07:31 +02:00
Ivar 8daf0cedee
betterdiscord-installer: init at 1.0.0-beta (#118471) 2021-04-07 09:59:54 +02:00
Sandro 0582cc9cc6
Merge pull request #118368 from xdHampus/uhexen2
uhexen2: init at 1.5.9
2021-04-07 09:54:49 +02:00
github-actions[bot] 5e509a83ed
Merge master into staging-next 2021-04-07 00:15:14 +00:00
Martin Weinelt af4b72b618
Merge pull request #118453 from fabaff/openhomedevice 2021-04-07 01:12:38 +02:00
Robert Schütz e289a280f3
pyspread: fix build and simplify expression (#117906) 2021-04-06 23:54:37 +02:00
IvarWithoutBones 48a2307da5 antsimulator: init at 1.2 2021-04-06 22:48:11 +02:00
github-actions[bot] 44d53d308b
Merge master into staging-next 2021-04-06 18:15:29 +00:00
Doron Behar 873991697f
Merge pull request #112715 from fortuneteller2k/add-xanmod-kernel
linux_xanmod: init at 5.11.10
2021-04-06 15:09:26 +00:00
Jan Tojnar c04a14edd6 Merge branch 'master' into staging-next 2021-04-06 16:01:14 +02:00
Sandro 2fb8be188f
Merge pull request #117377 from SEbbaDK/i3wsr 2021-04-06 12:03:26 +02:00
Sandro d51de7d227
Merge pull request #81619 from jtojnar/libdmapsharing
libdmapsharing: init at 3.9.10
2021-04-06 11:58:11 +02:00
Sandro d7ae55d28d
Merge pull request #118600 from fgaz/warzone2100/4.0.0
warzone2100: 3.4.1 -> 4.0.0
2021-04-06 10:30:17 +02:00
Sandro 79f6b53922
Merge pull request #116540 from fabaff/bump-configargparse
python3Packages.configargparse: 1.3 -> 1.4
2021-04-06 10:29:56 +02:00
Sandro a230fd4368
Merge pull request #91677 from jluttine/polar-init
polar: init at unstable-2021-01-12
2021-04-06 10:24:56 +02:00
Sandro cc444119b5
Merge pull request #91291 from jorsn/new.openlp 2021-04-06 10:24:20 +02:00
Sandro 8aaac9d5dc
Merge pull request #117080 from marsam/init-libpg_query
libpg_query: init at 13-2.0.4
2021-04-06 10:23:07 +02:00
Sandro 75bef0868b
Merge pull request #116287 from anna328p/gpt2tc
gpt2tc: init at 2020-12-30
2021-04-06 10:21:24 +02:00
Sandro 6f45d62f2b
Merge pull request #107190 from applePrincess/add-zsteg 2021-04-06 10:19:40 +02:00
Raphael Megzari a854fe32f2
wrangler: remove not needed libiconv inherit (#118640) 2021-04-06 10:18:59 +02:00
Eric Bailey 341f795787
go-containerregistry: init at 0.4.1 (#115875)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-04-06 10:00:40 +02:00
Alvar Penning 95794c43d9 pythonPackages.arrow_1: init at 1.0.3
This is an alternative arrow package for the new major version one. The
other package is still at 0.17 and bumping it will result in a huge
amount of rebuilds. However, some packages are depending on the new
release, e.g., watson.
2021-04-06 09:12:23 +02:00
Peter Hoeg 609a1f17a8 qqc2-breeze-style: init at 5.21.3 2021-04-06 15:09:55 +08:00
wedens 0968946551 vendor-reset: init at unstable-2021-02-16 2021-04-06 10:49:58 +07:00
fortuneteller2k 6ce986c934 linux_xanmod: init at 5.11.10 2021-04-06 10:47:28 +08:00
IvarWithoutBones 72069d206d grit: init at 0.2.0 2021-04-06 01:46:53 +02:00
Sandro be0b9616ca
Merge pull request #116671 from electrified/sjasmplus-1.18.2 2021-04-06 01:07:42 +02:00
sternenseemann c8870b4625 Revert "svkbd: init at 0.2.2"
This reverts commit 5e2d683c18.

Reason for revert: svkbd is already defined in
top-level/all-packages.nix, thus this commit is causing a syntax error.
2021-04-06 00:56:13 +02:00
Sandro ba334d85df
Merge pull request #104147 from sikmir/svkbd
svkbd: init at 0.3
2021-04-06 00:33:30 +02:00
Sandro 3211729b0b
Merge pull request #116476 from viric/alsaUtils-float
alsaUtils: fix fftw ref
2021-04-06 00:19:50 +02:00
Pavol Rusnak 073fbba9bf
Merge pull request #89267 from mmilata/bitcoin-exporter
nixos/prometheus-bitcoin-exporter: init
2021-04-06 00:08:33 +02:00
Martin Milata dbb07aba88 prometheus-bitcoin-exporter: init at 0.5.0 2021-04-05 23:50:42 +02:00
Martin Milata 596c486e53 pythonPackages.riprova: init at 0.2.7 2021-04-05 23:50:42 +02:00
bb2020 ea0e582d8a
zsh-clipboard: init at 1.0 (#115450)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-04-05 23:26:20 +02:00
Gregory Schwartz 9bf867612d
meme-suite: init at 5.1.1 (#118603)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-04-05 22:43:27 +02:00
Nikolay Korotkiy 93a484f72b
viking: 1.8 → 1.9 2021-04-05 22:56:36 +03:00
Sandro 50e29f1f75
Merge pull request #118592 from fabaff/nats-tools 2021-04-05 21:36:40 +02:00
Viacheslav Lotsmanov 0331df580f Add “place-cursor-at” to top-level packages 2021-04-05 21:14:46 +02:00
Sandro 5343c0426c
Merge pull request #118607 from stigtsp/package/perl-net-cidr-lite-0.22
perlPackages.NetCIDRLite: 0.21 -> 0.22
2021-04-05 19:12:38 +02:00
Sandro 56b8c368d8
Merge pull request #107099 from IvarWithoutBones/joycond-init
joycond: init at unstable-2021-03-27
2021-04-05 18:59:17 +02:00
Sandro 5d2f7bcfe2
Merge pull request #118418 from erictapen/ispc-1.15.0
ispc: 1.13.0 -> unstable-2021-04-02
2021-04-05 18:32:11 +02:00
Sandro 1c1d7753e1
Merge pull request #107299 from IvarWithoutBones/add-docx2python
pythonPackages.docx2python: init at unstable-2020-11-15
2021-04-05 18:27:24 +02:00
SEbbaDK 0b5a056d82 swaywsr: init at 1.1.0 2021-04-05 18:10:50 +02:00
SEbbaDK 21eeb98d1f i3wsr: init at 1.3.1 2021-04-05 18:10:50 +02:00
Stig Palmquist 8fca47fdc1 perlPackages.NetCIDRLite: 0.21 -> 0.22
Removed patch that is now in upstream
2021-04-05 18:02:52 +02:00
Sandro 4a87f88fa0
Merge pull request #118340 from dotlambda/qmk-init 2021-04-05 17:15:05 +02:00
Thibaut Marty df63ee8dcf poweralertd: init at 0.1.0 2021-04-05 16:58:10 +02:00
Francesco Gazzetta 65bfbb80d3 warzone2100: 3.4.1 -> 4.0.0 2021-04-05 16:08:32 +02:00
xdHampus 32b1dddd18 uhexen2: init at 1.5.9 2021-04-05 13:55:09 +00:00
sternenseemann 83eb1fe06d ocamlPackages.pbkdf: init at 1.1.0
Necessary for the upcoming x509 0.12.0 release.
2021-04-05 15:09:05 +02:00
Robert Schütz af9ea7040c python3Packages.recoll: init
Also move some stuff to recoll's nativeBuildInputs.
2021-04-05 15:08:25 +02:00
Fabian Affolter c8b27b818f python3Packages.asyncio-nats-client: init at 0.11.4 2021-04-05 14:21:17 +02:00
Fabian Affolter f355c8f501 nkeys: init at 0.3.0 2021-04-05 14:10:04 +02:00
Fabian Affolter 858f5740a1 nats-top: init at 0.4.0 2021-04-05 14:00:16 +02:00
Fabian Affolter 460af4c14b natscli: init at 0.0.22 2021-04-05 13:56:04 +02:00
talyz 1d3715d375
discourse-mail-receiver: Init at 4.0.7 2021-04-05 13:54:14 +02:00
talyz 4d8c8f4722
discourse: init at 2.6.3 2021-04-05 13:54:06 +02:00
Sandro b7ecee189c
Merge pull request #118414 from sumnerevans/add-openring-package
openring: init at f13edb5d
2021-04-05 06:58:06 +02:00
Sandro d2405f0c1d
Merge pull request #118458 from oxzi/supertag-0.1.4
supertag: init at 0.1.4
2021-04-05 06:33:07 +02:00
Sandro 7aae486f43
Merge pull request #117545 from bootstrap-prime/master 2021-04-05 06:25:08 +02:00
Sandro e039d12c85
Merge pull request #117847 from SuperSandro2000/jmusicbot 2021-04-05 06:20:56 +02:00
Sandro 354703e66f
Merge pull request #116067 from djwf/add-empty 2021-04-05 05:22:01 +02:00
David J. Weller-Fahy 0b4245c392 empty: init at 0.6.21b
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-04-04 22:27:40 -04:00
Sandro 7c932296e0
Merge pull request #116335 from SuperSandro2000/move-aliases.nix 2021-04-05 04:07:15 +02:00
Reed 897cbe0928 shticker-book-unwritten: init at 1.0.3 2021-04-04 20:26:33 -04:00
github-actions[bot] 44e3fc61fe
Merge master into staging-next 2021-04-05 00:16:38 +00:00
Robert Scott 0874169a0c
Merge pull request #118505 from mmilata/domain-exporter
prometheus-domain-exporter: init at 1.10.0
2021-04-04 23:00:46 +01:00
Sandro adaa3a7944
Merge pull request #118451 from oxzi/shellharden-4.1.2
shellharden: init at 4.1.2
2021-04-04 23:28:51 +02:00
Alvar Penning ea44189aaa supertag: init at 0.1.4
Supertag is a tag-based filesystem, written in Rust, for Linux and
MacOS. Merging will close #116279.
2021-04-04 23:05:09 +02:00
Martin Milata 2c76567af3 prometheus-domain-exporter: init at 1.10.0 2021-04-04 22:21:44 +02:00
Sandro Jäckel 3453b89f4b
lzma: deprecate alias 2021-04-04 19:49:52 +02:00
IvarWithoutBones b47a5fd544 joycond: init at unstable-2021-03-27 2021-04-04 18:17:00 +02:00
IvarWithoutBones a877e6c8e5 pythonPackages.docx2python: init at unstable-2020-11-15 2021-04-04 16:57:33 +02:00
github-actions[bot] 3e45982f7a
Merge master into staging-next 2021-04-04 12:06:01 +00:00
Thomas Gerbet 5196dcf353 vigra: use the HDF5 v1.10 API
vigra is not yet compatible with the v1.12 API [0][1].

[0] https://github.com/ukoethe/vigra/issues/476
[1] https://github.com/ukoethe/vigra/issues/476
2021-04-04 13:27:51 +02:00
Robert Schütz 8b65ff2559
Merge pull request #115368 from dotlambda/angelfish-init
angelfish: init at 1.8.0
2021-04-04 12:35:03 +02:00
Fabian Affolter 048cff368a python3Packages.openhomedevice: init at 1.0.0 2021-04-04 11:11:03 +02:00
Alvar Penning 673d561cd2 shellharden: init at 4.1.2 2021-04-04 10:52:27 +02:00
Sandro Jäckel d24e2d1b0b
gmock: deprecate alias 2021-04-04 03:18:59 +02:00
Sandro Jäckel 33a395f195
yacc: deprecate alias
and add a new line after the alphabetically sorting to please my inner monk
2021-04-04 03:18:58 +02:00
Sandro Jäckel 8e1db896a3
all-packages: format to make readable 2021-04-04 03:18:57 +02:00
Sandro Jäckel 62733b37b4
mysql: deprecate alias 2021-04-04 03:18:57 +02:00
Sandro Jäckel dcb501f993
kerberos: deprecate alias 2021-04-04 03:18:56 +02:00
github-actions[bot] 3cc7116425
Merge master into staging-next 2021-04-04 00:20:45 +00:00
Sandro Jäckel 9378fdf87e
iproute: deprecate alias 2021-04-04 01:43:46 +02:00
Martin Weinelt ba96478bf3
Merge pull request #118407 from dotlambda/pyturbojpeg-init
pythonPackages.pyturbojpeg: init at 1.4.1
2021-04-04 01:07:38 +02:00
bootstrap-prime 9063f676b7 tex-match: init at 1.2.0 2021-04-03 18:34:21 -04:00
Sumner Evans fa07c270b6
openring: init at f13edb5d
Initialize the openring package from
https://git.sr.ht/~sircmpwn/openring
2021-04-03 15:37:34 -06:00
github-actions[bot] 3bf92ca4db
Merge master into staging-next 2021-04-03 18:18:51 +00:00
Justin Humm 92e64428d1 ispc: 1.13.0 -> unstable-2021-04-02 2021-04-03 19:44:36 +02:00
Sandro Jäckel dd9862ba98
jack2Full: deprecate alias 2021-04-03 18:13:59 +02:00
Sandro 70833ffb71
Merge pull request #118385 from dotlambda/clickclack-init
clickclack: init at 0.1.1
2021-04-03 18:12:57 +02:00
Frederik Rietdijk 6a5049cb30 gdal_1_11: add alias 2021-04-03 17:08:56 +02:00
Frederik Rietdijk 7686edc5ae libiio: call with python3 2021-04-03 17:06:22 +02:00
Frederik Rietdijk 1b213f321c kippo: remove broken package
Broken for over 3 years.
2021-04-03 17:06:11 +02:00
Frederik Rietdijk 32cf3252d1 ingen: fixup callPackage 2021-04-03 17:06:11 +02:00
Frederik Rietdijk a06641c08f gtimelog: use python3 2021-04-03 17:06:08 +02:00
Frederik Rietdijk 233f08a87c gnuradioPackages: use same python for all packages 2021-04-03 17:06:08 +02:00
Frederik Rietdijk 363925961e gdal_1_11: remove old and unused version 2021-04-03 17:06:06 +02:00
Robert Schütz 5e8ff7b3b9 pythonPackages.pyturbojpeg: init at 1.4.1 2021-04-03 15:55:04 +02:00
Maximilian Bosch 4364fd3038
Merge pull request #118305 from Ma27/openldap-exporter
prometheus-openldap-exporter: init at 2.1
2021-04-03 15:02:59 +02:00
github-actions[bot] bc845e51f0
Merge master into staging-next 2021-04-03 12:06:14 +00:00
Robert Schütz 3bbb11e0e5 clickclack: init at 0.1.1 2021-04-03 11:04:51 +02:00
Gabriel Ebner 3ab6e84b79
Merge pull request #118327 from gebner/spnav
libspnav: remove nonstandard patches, fix segfaults
2021-04-03 08:11:52 +02:00
github-actions[bot] 470f04796a
Merge master into staging-next 2021-04-03 06:05:27 +00:00
Sandro eef00d3046
Merge pull request #114971 from eduardosm/isrcsubmit
isrcsubmit: init at 2.1.0
2021-04-03 04:40:56 +02:00
Eduardo Sánchez Muñoz 142418d941
acousticbrainz-client: init at 0.1 (#115780)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-04-03 04:40:29 +02:00
Sandro cd2e10d774
Merge pull request #108859 from hirenashah/oxefmsynth 2021-04-03 02:38:06 +02:00
Sandro 11aadf2e08
Merge pull request #117953 from SuperSandro2000/writefreely
writefreely: init at 0.12.0
2021-04-03 02:37:23 +02:00
Sandro Jäckel 3b5ce3144b
jmusicbot: init at 0.3.4 2021-04-03 02:34:11 +02:00
Sandro ee8c25055b
Merge pull request #117737 from babbaj/master 2021-04-03 02:28:44 +02:00
github-actions[bot] 74200a7126
Merge master into staging-next 2021-04-03 00:14:57 +00:00
Robert Schütz 01e7797579 qmk: init at 0.0.45 2021-04-02 23:08:24 +02:00
Gabriel Ebner 83dbaf67a9 spnavcfg: init at 0.3.1 2021-04-02 23:05:50 +02:00
Hiren Shah b052255e34
oxefmsynth: init at 1.3.5 2021-04-02 21:21:27 +01:00
Sandro e702a314d2
Merge pull request #99608 from zachcoyle/mas-init
mas: init at 1.8.1
2021-04-02 21:55:42 +02:00
Sandro 61dcc73c91
Merge pull request #114579 from fabaff/bump-awair 2021-04-02 21:54:31 +02:00
Karthik Iyengar 8d59785746
spotify-qt: init at v3.5 (#118261)
Co-authored-by: Karthik Iyengar <hello@kiyengar.net>
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-04-02 21:32:32 +02:00
Sandro 67249523f0
Merge pull request #118324 from dotlambda/qmk_firmware-drop
qmk_firmware: drop
2021-04-02 21:32:05 +02:00
Sandro 4c0bb6a6f3
Merge pull request #118267 from Yarny0/rastertosag-gdi
rastertosag-gdi (cups driver): init at 0.1
2021-04-02 21:15:51 +02:00
github-actions[bot] b3a0328b7f
Merge master into staging-next 2021-04-02 18:14:54 +00:00
Babbaj af57dd5747
gb-backup: init at 2021-03-06 2021-04-02 13:30:52 -04:00
Maximilian Bosch 4794829734
prometheus-openldap-exporter: init at 2.1 2021-04-02 19:16:50 +02:00
Sandro 15656a7b79
Merge pull request #118310 from eduardosm/gnomeExtension.disable-unredirect 2021-04-02 19:14:02 +02:00
Sandro 383c8f9090
Merge pull request #118286 from xdHampus/quich 2021-04-02 19:13:11 +02:00
Sandro 90fb692e5d
Merge pull request #115909 from mschuwalow/async-profiler
async-profiler: init at 1.8.4
2021-04-02 19:09:09 +02:00
Sandro 4f89ec98f8
Merge pull request #117103 from fortuneteller2k/add-curie
curie: init at 1.0
2021-04-02 18:19:23 +02:00
Zach Coyle c7c2e2f54f
mas: init at 1.8.1 2021-04-02 12:14:36 -04:00
Sandro aa5e93ae84
Merge pull request #117430 from aanderse/kodi-pvr-iptvsimple 2021-04-02 18:14:23 +02:00
xdHampus 0d5bb58c52 quich: init at 3.1.0 2021-04-02 15:58:52 +00:00
Sandro 5a41d751ae
Merge pull request #104919 from gravndal/git-annex-remote-googledrive 2021-04-02 17:28:35 +02:00
Eduardo Sánchez Muñoz 7216d19e4e gnomeExtension.disable-unredirect: init at unstable-2021-01-17 2021-04-02 17:12:17 +02:00
Robert Schütz c68dc85671 qmk_firmware: drop
It has not been touched in years, is lacking meta, and is marked as
broken in release-20.09.
2021-04-02 15:51:51 +02:00
Martin Weinelt 54d286365d
Merge pull request #87750 from oxzi/ubertooth 2021-04-02 15:23:30 +02:00
sternenseemann 2f368c2060 ocamlPackages.decompress-1-2: remove at 1.2.0
With imagelib updated there remains no user of this in nixpkgs.
2021-04-02 15:03:44 +02:00
sternenseemann a6425a6008 ocamlPackages.imagelib: 20200929 -> 20210402
Allows us to get rid of decompress 1.2.0:

https://github.com/rlepigre/ocaml-imagelib/releases/tag/20210402
2021-04-02 15:03:44 +02:00
github-actions[bot] 60739e07d2
Merge master into staging-next 2021-04-02 12:06:12 +00:00
Fabian Affolter 011f0b7897 python3Packages.pymemcache: init at 3.4.0 2021-04-02 12:29:53 +02:00
Michael Weiss 53fd303d0e
llvmPackages_12: Add recurseIntoAttrs
See #115288 (835a8f1cbc). This was missing for LLVM 12 because both
changes where made in parallel.
2021-04-02 12:16:50 +02:00
Yarny0 eaa62fa391 rastertosag-gdi (cups driver): init at 0.1
Some Ricoh printers use the proprietary sag-gdi format
and can't handle other, more common formats.
This commit brings a filter for cups
that generates the sag-gdi format.

The latest version 0.1 is dated 2011.  So updates are unlikely.

The filter is written for Python 2.
To avoid new reverse dependencies on Python 2,
we employ a patch from Debian
that migrates the code to Python 3.

The README file just states "GPL" as license.
It is unclear whether that refers to the first version or
to the "current version" in the year of the copyright
(would be 3), and whether newer versions would be included.
The commit picks the nixpkgs `free` license
as this seems to be the most general license
covering all possible GPL combinations.
At least, `free` should permit Hydra to build the package.

The source tarball brings pdd files, but also a
drv file that can be used to generate those ppd files.
Since we prefer building from source,
we call cups' `ppdc` to build ppd files from the drv file.

Here is a documentation of the sag-gdi format:
https://www.undocprint.org/formats/page_description_languages/sagem-gdi
2021-04-02 10:51:36 +02:00
Vincent Laporte 9ac5c7df17 ocamlPackages.gettext-camomile: init at 0.4.2 2021-04-02 09:13:44 +02:00
github-actions[bot] 636e58e31b
Merge staging-next into staging 2021-04-02 00:21:46 +00:00
Robert Schütz f35dd88c64 lisgd: init at 0.3.0 2021-04-01 23:44:16 +02:00
Gaute Ravndal e9f12cd9db git-annex-remote-googledrive: init at 1.3.0 2021-04-01 23:05:45 +02:00
Gaute Ravndal f1e9be8dc0 python3Packages.drivelib: init at 0.3.0 2021-04-01 23:05:28 +02:00