summary refs log tree commit diff
path: root/pkgs/top-level/all-packages.nix
Commit message (Collapse)AuthorAge
...
| * | | | | | | | | | | | | | gsignondPlugins.oauth: init at 2018-10-04worldofpeace2018-10-19
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | gsignondPlugins.sasl: init at 2017-11-11worldofpeace2018-10-19
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | gsignond: init at 2018-10-04worldofpeace2018-10-19
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | apt-dater: init at 1.0.3 (#32175)Tim2018-10-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * apt-dater: init at 1.0.3 * apt-dater: use autoreconfHook
* | | | | | | | | | | | | | | cargo: fix darwin buildDaiderd Jordan2018-10-26
| |_|_|_|_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It depends the Security framework now.
* | | | | | | | | | | | | | openssh: 7.7p1 -> 7.9p1 (#48784)zimbatm2018-10-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | added openssh_gssapi to make it easier to test the patched version the HPN edition isn't available on top of 7.9p1 yet fix-host-key-algorithms-plus.patch didn't apply anymore, assuming it's fixed. release notes: https://www.openssh.com/txt/release-7.9
* | | | | | | | | | | | | | cdb: init at 0.75Profpatsch2018-10-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We check in the docs from a mirror repository, because the upstream release doesn’t provide them.
* | | | | | | | | | | | | | signify: init at 24 (#48927)Richard Lupton2018-10-25
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | openjpeg_2: rename from openjpeg_2_1 at 2.3.0Orivej Desh2018-10-25
| |_|_|_|_|_|_|/ / / / / / |/| | | | | | | | | | | |
* | | | | | | | | | | | | tikzit: init at 2.0 (#48479)Ingo Blechschmidt2018-10-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * tikzit: init at 2.0 * tikzit: Parallel building and qualification
* | | | | | | | | | | | | Merge pull request #42371 from Mic92/nix-breakpointsJörg Thalheim2018-10-25
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | breakpointHook: add for debugging failing builds
| * | | | | | | | | | | | | breakpointHook: add for debugging failing buildsJörg Thalheim2018-10-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Usuage: Add breakpointHook to your `buildInputs` like this: stdenv.mkDerivation rec { # ... buildInputs = [ breakpointHook ]; }); When the build fails as show in this example: pkgs.hello.overrideAttrs (old: { buildInputs = [ breakpointHook ]; postPatch = '' false ''; }); It will halt execution printing the following message: build failed in patchPhase with exit code 1 To attach to this build run the following command as root: cntr attach -t command cntr-/nix/store/ynyb4n82x2r7sldd58pbb405jdqh5f00-hello-2.10 Installing cntr and running the command will provide shell access to the build sandbox of failed build: sudo cntr attach -t command cntr-/nix/store/ynyb4n82x2r7sldd58pbb405jdqh5f00-hello-2.10 WARNING: bad ownership on /nix/var/nix/profiles/per-user/root, should be 1000 [nixbld@localhost:/var/lib/cntr]$ At /var/lib/cntr the sandbox filesystem is mounted. All commands and files of the system are still accessible within the shell. To execute commands from the sandbox use the `cntr exec` subcommand.
| * | | | | | | | | | | | | cntr: init at 1.2.0Jörg Thalheim2018-10-25
| | |_|_|_|_|_|_|_|/ / / / | |/| | | | | | | | | | |
* | | | | | | | | | | | | stack: fix the ghc 8.4.x buildPeter Simons2018-10-25
| | | | | | | | | | | | |
* | | | | | | | | | | | | or-tools: new package (v6.9.1)Mateusz Kowalczyk2018-10-25
| |_|_|_|_|_|_|/ / / / / |/| | | | | | | | | | |
* | | | | | | | | | | | Merge pull request #48843 from JohnAZoidberg/rng-tools-6.6Renaud2018-10-24
|\ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|/ / / / / / / |/| | | | | | | | | | | rng-tools: 5 -> 6.6, jitterentropy: init at 2.1.2
| * | | | | | | | | | | rng-tools: Rename attribute rng_tools -> rng-toolsDaniel Schaefer2018-10-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Comply with naming guidelines
| * | | | | | | | | | | jitterentropy: init at 2.1.2Daniel Schaefer2018-10-23
| | | | | | | | | | | |
* | | | | | | | | | | | Merge pull request #48921 from timokau/r8168Timo Kaufmann2018-10-24
|\ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|/ / / / / |/| | | | | | | | | | | r8168: init at 8.046.00
| * | | | | | | | | | | r8168: init at 8.046.00Timo Kaufmann2018-10-24
| | |_|_|_|_|_|/ / / / | |/| | | | | | | | |
* | | | | | | | | | | QuadProgpp: Remember to add to all-packages.nixMateusz Kowalczyk2018-10-24
| |/ / / / / / / / / |/| | | | | | | | |
* | | | | | | | | | cloudflared: init at 2018.10.3Austin Seipp2018-10-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 'cloudflared' is a multi-purpose client-side tool for CloudFlare Argo Tunnel, CloudFlare Access, as well as including a simple DNS-over-HTTP (DoH) proxy tool as well. However, 'cloudflared' is NOT available under an open source license. Furthermore, the exact terms of redistribution (namely, if we are able to redistribute binaries at all) are not entirely clear to me. As a result, I have filed the following bug report concerning the terms of redistribution for the source code and binaries: https://github.com/cloudflare/cloudflared/issues/53 'cloudflared' does have source code available, however, and it encourages users to use 'go install' in order to set it up, in fact (or download their prebuilt, compiled binaries). So using the source seems to be encouraged. Even then, I'm still not sure if Hydra can serve these binaries. In lieu of a more pointed answer regarding source/binary licensing, and to avoid keeping this expression in my private tree, I've marked it as 'unfree' (to avoid Hydra serving it in any way) as well as compiled from source (to avoid any 'redistribution allowed while unmodified' terms that may crop up). The dependencies for this build were generated using 'dep2nix'. Signed-off-by: Austin Seipp <aseipp@pobox.com>
* | | | | | | | | | mako: init at 1.1 (#46606)Vladyslav M2018-10-23
| |_|_|_|_|_|_|/ / |/| | | | | | | |
* | | | | | | | | Merge pull request #48578 from vdemeester/init-skaffoldlewo2018-10-23
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | skaffold: init at 0.16.0
| * | | | | | | | | skaffold: init at 0.16.0Vincent Demeester2018-10-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Vincent Demeester <vincent@sbr.pm>
* | | | | | | | | | nixos/rootston: Remove the module and the package (#48905)Michael Weiss2018-10-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Rootston is just a reference compositor so it doesn't make that much sense to have a module for it. Upstream doesn't really like it as well: "Rootston will never be intended for downstream packages, it's an internal thing we use for testing." - SirCmpwn [0] Removing the package and the module shouldn't cause much problems because it was marked as broken until 886131c2434dfce5e3c8a3584467ae914b482ce9. If required the package can still be accessed via wlroots.bin (could be useful for testing purposes). [0]: https://github.com/NixOS/nixpkgs/issues/38344#issuecomment-378449256
* | | | | | | | | | sway-beta: init at 1.0-beta1 (#48829)Patrick Hilhorst2018-10-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * sway-beta: init at 1.0-beta1 * sway, sway-beta: use https url
* | | | | | | | | | opentracing-cpp: init 1.5.0Rob Vermaas2018-10-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (cherry picked from commit f49df04c02d083395957fc85e12d231bb536e451)
* | | | | | | | | | Merge pull request #48794 from markuskowa/fix-samba-ibJoachim F2018-10-23
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | samba: remove defunct infiniband support
| * | | | | | | | | | samba: remove defunct infiniband supportMarkus Kowalewski2018-10-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Even if infiniband support is enabled the option is ignored by the configure script and no depencies to libibverbs.so or librdmacm.so is contained in the output.
* | | | | | | | | | | ocamlformat: init at 0.8Théo Zimmermann2018-10-23
| | | | | | | | | | |
* | | | | | | | | | | datadog-agent: add option to enable trace agentRob Vermaas2018-10-23
| | | | | | | | | | |
* | | | | | | | | | | Merge pull request #48821 from nyanloutre/jackett-10-365Jörg Thalheim2018-10-23
|\ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|/ / / / / |/| | | | | | | | | | jackett: 0.10.304 -> 0.10.365
| * | | | | | | | | | jackett: update mono version to 5.14nyanloutre2018-10-23
| | |_|_|_|_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | See details here : https://github.com/NixOS/nixpkgs/pull/48821#issuecomment-431837095
* | | | | | | | | | visidata: init at 1.3.1Michael Raskin2018-10-23
| | | | | | | | | |
* | | | | | | | | | lrs: init at 7.0Michael Raskin2018-10-23
| | | | | | | | | |
* | | | | | | | | | Merge pull request #48614 from vdemeester/init-kube-promptlewo2018-10-23
|\ \ \ \ \ \ \ \ \ \ | |_|_|_|_|/ / / / / |/| | | | | | | | | kube-prompt: init at 1.0.4
| * | | | | | | | | kube-prompt: init at 1.0.4Vincent Demeester2018-10-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Vincent Demeester <vincent@sbr.pm>
* | | | | | | | | | Merge pull request #48818 from jokogr/u/lxd-3.0.2Jörg Thalheim2018-10-22
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | lxd: 3.0.0 -> 3.0.2
| * | | | | | | | | | dqlite: initialize at 0.2.4Ioannis Koutras2018-10-22
| | | | | | | | | | |
| * | | | | | | | | | sqlite-replication: initialize at 3.24.0+replication3Ioannis Koutras2018-10-22
| | |_|_|_|/ / / / / | |/| | | | | | | |
* | | | | | | | | | Merge pull request #48482 from Lassulus/ttyplotSarah Brofeldt2018-10-22
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | ttyplot: init at 1.0
| * | | | | | | | | | ttyplot: init at 1.0lassulus2018-10-16
| | | | | | | | | | |
* | | | | | | | | | | linux: Add 4.19Tim Steinbach2018-10-22
| |/ / / / / / / / / |/| | | | | | | | |
* | | | | | | | | | Merge pull request #47864 from uskudnik/add-brave-browserJörg Thalheim2018-10-22
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | brave: init at 0.24.0
| * | | | | | | | | | brave: init at 0.25.2Urban Skudnik2018-10-16
| | | | | | | | | | |
* | | | | | | | | | | vgo2nix: init at unstable-2018-10-14adisbladis2018-10-22
| |_|/ / / / / / / / |/| | | | | | | | |
* | | | | | | | | | Merge pull request #48338 from unode/libaosdRenaud2018-10-21
|\ \ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / / |/| | | | | | | | | libaosd: init at 0.2.7-9-g177589f
| * | | | | | | | | libaosd: init at 0.2.7-9-g177589fRenato Alves2018-10-21
| | | | | | | | | |
* | | | | | | | | | Merge pull request #48172 from jluttine/cholmod-extra-1.2.0Renaud2018-10-21
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | cholmod-extra: init at 1.2.0