summary refs log tree commit diff
path: root/pkgs/top-level/aliases.nix
Commit message (Collapse)AuthorAge
* pmtools: remove and alias (#49596)Renaud2018-11-01
| | | | | These are the old tools that later became part of ACPICA. It is obsolete and we already have newer acpica-tools. Alias to acpica-tools for out of tree backward-compat
* postgresql*: use underscores in version numbersAlyssa Ross2018-10-30
|
* postgresql10: rename from postgresql100Alyssa Ross2018-10-30
|
* Merge pull request #49074 from c0bw3b/pkg/veracryptxeji2018-10-29
|\ | | | | veracrypt: 1.22 -> 1.23 / truecrypt: remove and alias to veracrypt
| * truecrypt: remove and alias to veracryptc0bw3b2018-10-24
| | | | | | | | | | | | TrueCrypt has been retired for a while now and the source archive we pointed to is gone. Moreover the VeraCrypt fork is available, maintained and fixes issues previous audits found in TrueCrypt.
* | sage: add sagemath aliasTimo Kaufmann2018-10-27
| | | | | | | | | | Sage is commonly referred to as sagemath (probably to improve searchability). Many other distors call their package sagemath.
* | openjpeg_2: rename from openjpeg_2_1 at 2.3.0Orivej Desh2018-10-25
|/
* rng-tools: Rename attribute rng_tools -> rng-toolsDaniel Schaefer2018-10-24
| | | | Comply with naming guidelines
* wasm: remove alias to unbreak the channelLéo Gaspard2018-10-22
| | | | | | | | | | | | Nixpkgs' channel currently can't move forward so long as there is a trace in evaluating the top-level arguments. Which means that it isn't possible to add a warning message to warn users of future package removal. So the only way forward appears to be just removing the alias altogether. (cherry picked from commit b4133ebc17c2742a76d912f4f0bf46719bc7800e)
* Merge pull request #48444 from Ekleog/wasm-aliasJörg Thalheim2018-10-21
|\ | | | | wasm: add as temporary alias to proglodyte-wasm
| * wasm: add as temporary alias to proglodyte-wasmLéo Gaspard2018-10-16
| |
* | Merge master into stagingFrederik Rietdijk2018-10-18
|\ \
| * \ Merge pull request #46613 from jtojnar/xpra-gtk3Jan Tojnar2018-10-18
| |\ \ | | |/ | |/| xpra: port to gtk3
| | * xpraGtk3: point to xpraJan Tojnar2018-10-04
| | | | | | | | | | | | xpra now uses GTK 3
* | | Merge staging-next into stagingFrederik Rietdijk2018-10-17
|\| |
| * | arrow-cpp: 0.10.0 -> 0.11.0 (#48066)Dmitry Kalinkin2018-10-13
| | | | | | | | | | | | | | | | | | * arrow-cpp: 0.10.0 -> 0.11.0 * arrow-cpp: enable testing
* | | Merge pull request #48297 from volth/remove-top-perlXMLParserxeji2018-10-14
|\ \ \ | | | | | | | | perlXMLParser -> perlPackages.XMLParser
| * \ \ Merge branch 'staging' into remove-top-perlXMLParservolth2018-10-13
| |\ \ \
| * | | | aliases.nix: add perlXMLParservolth2018-10-12
| | |_|/ | |/| |
* | | | buildPerlPackage -> perlPackages.buildPerlPackagevolth2018-10-14
| |/ / |/| |
* | | perlArchiveCpio -> perlPackages.ArchiveCpiovolth2018-10-13
| |/ |/|
* | buildbot: add Python 3 supportBen Wolsieffer2018-10-11
| |
* | ocamlPackages_3_12_1: removeThéo Zimmermann2018-10-08
| |
* | ocamlPackages_3_11_2: removeThéo Zimmermann2018-10-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This requires removing also the Coq 8.3 and Matita 0.5.8 packages. Coq 8.3 was released 8 years ago (2010) and there is no trace left of users of this version (contrary to Coq 8.4, released 2012). It is well over time to remove it. Matita 0.5.8 was released in 2010 and because this version was still used for teaching according to the official website, a legacy release (0.5.9) was released in 5 years later to compile with more recent OCaml libraries. Updating to 0.5.9 (or a more recent version like 0.99.3) should allow getting rid of the dependency on older OCaml but it is hard to test given that the package is already broken before this update.
* | ocamlPackages_3_10_0: removeThéo Zimmermann2018-10-08
| |
* | ocamlPackages_3_08_0: removeThéo Zimmermann2018-10-08
|/
* terraform-providers: move ibm and libvirt underneath the terraform-providersWael M. Nasreddine2018-09-28
|
* terraform: move providers to terraform-providerszimbatm2018-09-28
| | | | | | | | | Before, providers were only built indirectly. Since proviers don't depend on terraform to build they can be moved into their own collection of packages. This also has the advantage that they can be reached directly using an attribute path (Eg: terraform-providers.nixos). Co-authored-by: Wael Nasreddine <wael.nasreddine@gmail.com>
* goimports: Remove in favor of gotoolsRoman Volosatovs2018-09-17
|
* jbuilder: 1.0.1 -> dune: 1.1.1Vincent Laporte2018-09-15
|
* whipper: replace morituriJan Tojnar2018-09-14
| | | | | | morituri has been dead for a while now and uses gst-python which is no longer supported wth Python 2. whipper is a maintained fork, packaged, for example, in Arch.
* weechat: 2.1 -> 2.2; improve package configurationMaximilian Bosch2018-09-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This aims to make the `weechat` package even more configurable. It allows to specify scripts and commands using the `configure` function inside a `weechat.override` expression. The package can be configured like this: ``` with import <nixpkgs> { }; weechat.override { plugins = { availablePlugins, ... }: { plugins = builtins.attrValues availablePlugins; init = '' /set foo bar /server add freenode chat.freenode.org ''; scripts = [ "/path/to/script.py" ]; }; } ``` All commands are passed to `weechat --run-command "/set foo bar;/server ..."`. The `plugins' attribute is not necessarily required anymore, if it's sufficient to add `init' commands, the `plugins' will be `builtins.attrValues availablePlugins' by default. Additionally the result contains `weechat` and `weechat-headless` (introduced in WeeChat 2.1) now.
* all-packages.nix: rename emacs functions Gen -> ForJan Malakhovski2018-09-04
| | | | | This was introduced when it was unclear which suffix was better, but now it's clear that the "For" convention won.
* Merge pull request #45820 from ↵John Ericson2018-08-31
|\ | | | | | | | | obsidiansystems/dont-use-obsolete-platform-aliases treewide: Dont use obsolete platform aliases
| * treewide: Remove usage of remaining redundant platform compatability stuffJohn Ericson2018-08-30
| | | | | | | | | | Want to get this out of here for 18.09, so it can be deprecated thereafter.
* | treewide: write better docstrings for tor-browser thingsJan Malakhovski2018-08-31
|/
* msgpack: rename from libmsgpackOrivej Desh2018-08-18
| | | | | The project does not use the name "libmsgpack". It variously uses "msgpack" and "msgpack-c", and "msgpackc" for the name of the library.
* Revert "aliases: add nixos-rebuild"Eelco Dolstra2018-08-10
| | | | | | | | | | This reverts commit 0b124c1e9152959cd9de9de46c4a4d9146a818e6. We should really stop adding things that are not packages to all-packages.nix. For example, having nixos-rebuild.nix in all-packages.nix causes 'nix-env -qa' to evaluate a NixOS configuration, which obviously is not good for performance. (We should probably also remove the 'nixos' attribute from all-packages.nix, but at least that's a function so nix-env will ignore it.)
* aliases: add nixos-rebuildMatthew Bauer2018-08-10
| | | | Fixes #44135
* mpich2: cleanup, rename to mpichMarkus Kowalewski2018-08-06
| | | | | | | | * mpich2 -> mpich * remove slurm dependency * use most recent gfortran * turn enableParallelBulding on * ensure mpi[cc,cxx,fort] uses default compilers it was built with
* aliases: add callPackage_i686Matthew Bauer2018-07-27
| | | | This was removed in PR #42874.
* skarnet software: rename attributes and split outputsProfpatsch2018-07-25
| | | | | | Change the attribute names of camelCased utils to kebab-case to improve consistency. Split every package into multiple outputs where possible.
* Merge master into staging-nextFrederik Rietdijk2018-07-19
|\
| * treewide: remove aliases in nixpkgsMatthew Bauer2018-07-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This makes the command ‘nix-env -qa -f. --arg config '{skipAliases = true;}'’ work in Nixpkgs. Misc... - qtikz: use libsForQt5.callPackage This ensures we get the right poppler. - rewrites: docbook5_xsl -> docbook_xsl_ns docbook_xml_xslt -> docbook_xsl diffpdf: fixup
| * aliases: add forceSystemMatthew Bauer2018-07-18
| | | | | | | | Some uses of this still exist outside of Nixpkgs
* | unixtools: add watch commandMatthew Bauer2018-07-09
|/
* pgmanage: remove deprecated postage aliasBas van Dijk2018-06-23
| | | | | | | The following has been removed: * The `services.postage` alias for the `services.pgmanage` module * The `postage` alias for the `pgmanage` package
* aliases: fix using the wrong self refsWill Fancher2018-06-12
|
* adobe_flex_sdk: 4.0.0.14159 -> apache-flex-sdk: 4.16.1 (#41257)Vladyslav M2018-06-02
|
* conntrack-tools: 1.4.4 -> 1.4.5Orivej Desh2018-05-30
| | | | Fix build with libnetfilter_conntrack 1.0.7.