Commit graph

665 commits

Author SHA1 Message Date
Léo Gaspard 203955fa0c
Merge pull request #82714 from delroth/s3tc
libtxc_dxtn{,_s2tc}: remove from nixpkgs + hardware.opengl options
2020-04-20 13:41:47 +02:00
Jörg Thalheim b442f8ea9f
Merge pull request #85566 from kirelagin/lieer 2020-04-20 05:38:13 +01:00
Pierre Bourdon 1b89bffcf4
libtxc_dxtn{,_s2tc}: remove from nixpkgs + hardware.opengl options
Context: discussion in https://github.com/NixOS/nixpkgs/pull/82630

Mesa has been supporting S3TC natively without requiring these libraries
since the S3TC patent expired in December 2017.
2020-04-20 03:19:41 +02:00
Kirill Elagin bff2c1258e gmailieer: 1.0 -> 1.1, rename to lieer 2020-04-19 21:59:13 +03:00
Yegor Timoshenko 6f1165a0cb
Merge pull request #84522 from emilazy/add-linux-hardened-patches
linux_*_hardened: use linux-hardened patch set
2020-04-19 20:01:35 +03:00
Lionello Lunesu 4c538d022d ldc: 1.17.0 -> 1.20.1 2020-04-18 20:48:57 +08:00
Matthew Bauer 43873351ff blas/lapack: add wrapper for “alternative”s of BLAS/LAPACK provider
This is based on previous work for switching between BLAS and LAPACK
implementation in Debian[1] and Gentoo[2]. The goal is to have one way
to depend on the BLAS/LAPACK libraries that all packages must use. The
attrs “blas” and “lapack” are used to represent a wrapped BLAS/LAPACK
provider. Derivations that don’t care how BLAS and LAPACK are
implemented can just use blas and lapack directly. If you do care what
you get (perhaps for some CPP), you should verify that blas and lapack
match what you expect with an assertion.

The “blas” package collides with the old “blas” reference
implementation. This has been renamed to “blas-reference”. In
addition, “lapack-reference” is also included, corresponding to
“liblapack” from Netlib.org.

Currently, there are 3 providers of the BLAS and LAPACK interfaces:

- lapack-reference: the BLAS/LAPACK implementation maintained by netlib.org
- OpenBLAS: an optimized version of BLAS and LAPACK
- MKL: Intel’s unfree but highly optimized BLAS/LAPACK implementation

By default, the above implementations all use the “LP64” BLAS and
LAPACK ABI. This corresponds to “openblasCompat” and is the safest way
to use BLAS/LAPACK. You may received some benefits from “ILP64” or
8-byte integer BLAS at the expense of breaking compatibility with some
packages.

This can be switched at build time with an override like:

    import <nixpkgs> {
        config.allowUnfree = true;
        overlays = [(self: super: {
          lapack = super.lapack.override {
            lapackProvider = super.lapack-reference;
          };
          blas = super.blas.override {
            blasProvider = super.lapack-reference;
          };
        })];
      }

or, switched at runtime via LD_LIBRARY_PATH like:

    $ LD_LIBRARY_PATH=$(nix-build -E '(with import <nixpkgs> {}).lapack.override { lapackProvider = pkgs.mkl; is64bit = true; })')/lib:$(nix-build -E '(with import <nixpkgs> {}).blas.override { blasProvider = pkgs.mkl; is64bit = true; })')/lib ./your-blas-linked-binary

By default, we use OpenBLAS LP64 also known in Nixpkgs as
openblasCompat.

[1]: https://wiki.debian.org/DebianScience/LinearAlgebraLibraries
[2]: https://wiki.gentoo.org/wiki/Blas-lapack-switch
2020-04-17 16:23:55 -05:00
Emily 0d4f35efd4 linux_*_hardened: use linux-hardened patch set
This is an updated version of the former upstream,
https://github.com/AndroidHardeningArchive/linux-hardened, and provides
a minimal set of additional hardening patches on top of upstream.

The patch already incorporates many of our hardened profile defaults,
and releases are timely (Linux 5.5.15 and 5.6.2 were released on
2020-04-02; linux-hardened patches for them came out on 2020-04-03 and
2020-04-04 respectively).
2020-04-17 16:13:39 +01:00
Jörg Thalheim a5661135f2
Merge pull request #84096 from DieGoldeneEnte/llvm-latest
llvmPackages_latest: llvm9->llvm10
2020-04-13 16:48:45 +01:00
Holger Wünsche 671733227c
{llvm,polly}-polly: moved to aliases.nix 2020-04-13 14:27:51 +02:00
Elis Hirwing 3b6539896b
Merge pull request #83896 from etu/slim-down-default-php-v3
PHP: Make the default package more sane [v3]
2020-04-05 20:00:03 +02:00
Elis Hirwing a5f77d6ea2
php-unit: Drop the declaration of the php-unit attributes since they aren't used 2020-04-03 10:11:11 +02:00
Elis Hirwing be7bf5a18d
php-embed: Drop the declaration of the php-embed attributes 2020-04-03 10:11:07 +02:00
Jörg Thalheim 10059e4b71
Merge remote-tracking branch 'upstream/master' into HEAD 2020-03-29 14:08:10 +01:00
Orivej Desh 30dc230997
avldrums-lv2: alias to x42-avldrums (#83665)
Fixes #83649
2020-03-29 10:22:55 +00:00
Frederik Rietdijk a36be028f5 Merge staging-next into staging 2020-03-28 21:15:15 +01:00
Benjamin Hipple a80ed9f72a aliases.nix: add aliases for removed torch packages
We've removed the abandoned and broken torch project as part of https://github.com/NixOS/nixpkgs/issues/71888

This commit adds aliases for:

- https://github.com/NixOS/nixpkgs/pull/81173
- https://github.com/NixOS/nixpkgs/pull/83568
2020-03-28 09:54:59 -04:00
Robin Gloster d4f08ee383
Merge pull request #83452 from prusnak/slack
slack: 4.2.0 -> 4.4.0
2020-03-28 12:06:19 +00:00
Marek Mahut 9a43587998
slack-dark: alias to slack 2020-03-27 14:45:53 +01:00
Orivej Desh ef164d2ba9 vamp-plugin-sdk: rename from vamp.vampSDK 2020-03-26 22:34:47 +00:00
Tor Hedin Brønner aef3860211
libcroco: remove as it's no longer used
librsvg and gnome-shell was the only derivations needing libcroco. Both
of them have now dropped it as a dependency, so we can stop carrying it.
2020-03-24 07:11:03 +01:00
Orivej Desh e1c3085354 lrdf: move from librdf libraries
It was never called librdf and it is not a librdf.org project.
2020-03-23 00:22:36 +00:00
Jörg Thalheim b00b66e262
Merge pull request #82861 from gila/terraform-lxd
terraform-providers.lxd: init at 1.3.0
2020-03-19 13:08:20 +00:00
Jeffry Molanus 4bcdfdb7b8 terraform-providers.lxd: init at 1.3.0 2020-03-19 00:10:04 +01:00
Dmitry Kalinkin fd867123f6
remove lmmath, rename latinmodern-math to lmmath 2020-03-18 03:24:53 -04:00
Aaron Andersen 6283b00f4f
Merge pull request #82319 from aanderse/tomcat-update
tomcat: 7.0.92 -> 7.0.100, 8.5.42 -> 8.5.51, 9.0.21 -> 9.0.31
2020-03-16 15:46:48 -04:00
Léo Gaspard 7566b4f924
Merge pull request #82614 from Ekleog/xfce4-remove-alias
xfce4-12: remove alias
2020-03-15 12:00:20 +01:00
Léo Gaspard 175f9ef4f8 xfce4-12: remove alias 2020-03-14 22:05:50 +01:00
zimbatm 001be890f7 folding@home: 6.02 -> 7.5.1
The v7 series is very different.

This commit introduces the 3 packages: fahclient, fahcontrol and
fahviewer. It also rebuilds the NixOS module to map better with the new
client.
2020-03-14 13:01:26 -07:00
Aaron Andersen 22f24f7859 tomcat8: 8.5.42 -> 8.5.51 2020-03-11 07:51:04 -04:00
Emily 6eb45bf38a source-han-{sans,serif,mono}: {update,refactor,init}
* source-han-sans: 1.004R -> 2.001
* source-han-serif: switch to Super OTC
* source-han-mono: init at 1.002

The Source Han fonts now use shared package infrastructure, and the
Super OTC distributions, which unify the various scripts into a single
bundle file, improving automatic font selection and reducing overall
disk space usage. This also means that the Traditional
Chinese—Hong Kong language variant is now included.

The old package names including language are aliased to the Super OTC
bundle packages.
2020-02-29 14:57:27 +03:00
Alyssa Ross dddcfaccbb aliases: helpful 'fetchFromGithub' typo message 2020-02-28 14:38:16 +00:00
Lily Ballard 18007d5656 xv: 0.1.1 -> 0.1.2, rename to xxv
Also update the license.
2020-02-27 22:58:32 -08:00
Florian Klink fb17ac3786 sundials_3: remove
This package has only been used for python.pkgs.scikits-odes, which
should compile with sundials 5 by now.
2020-02-19 15:38:45 +01:00
Michele Guerini Rocco 8de09faad1
Merge pull request #79664 from rnhmjoj/dina
dina: generate otb files with fontforge
2020-02-15 01:28:40 +01:00
rnhmjoj 72bdf27771
rxvt-unicode: fix typo in aliases.nix 2020-02-13 09:30:22 +01:00
Frederik Rietdijk 424697d512 Merge master into staging-next 2020-02-12 09:55:31 +01:00
Maximilian Bosch 3d1007716c
pinentry_qt5: alias to pinentry-qt
Attribute was removed in a4916fdea5 which
will land in 20.03, but breaks evaluation for everyone using
pinentry_qt5 on NixOS 19.09 when updating.
2020-02-11 16:10:01 +01:00
Frederik Rietdijk 1a6c3cb06b Merge staging into staging-next 2020-02-11 07:59:53 +01:00
zimbatm bcdc90a3a7 ruby_2_4: remove
According to https://endoflife.software/programming-languages/server-side-scripting/ruby
ruby 2.4 will go end-of-life in march, where the new release of nixpkgs
will be cut. We won't be able to support it for security updates.

Remove all references to ruby_2_4 and add ruby_2_7 instead where
missing.

Mark packages that depend on ruby 2.4 as broken:
* chefdk
* sonic-pi
2020-02-10 13:23:35 -05:00
Michele Guerini Rocco 565724c775
Merge pull request #77347 from rnhmjoj/urxvt
rxvt-unicode: rewrite plugin system
2020-02-10 17:21:59 +01:00
rnhmjoj 7f7c94497a
dina,dina-pcf: unify packages 2020-02-10 00:28:56 +01:00
worldofpeace 1b2b9dac5c
Merge pull request #79115 from flokli/simplify-firefox
firefoxPackages.*: remove unsupported packages, clean up derivation
2020-02-09 17:57:55 -05:00
Florian Klink 9bf7d51047 conkeror: remove package
Conkeror doesn't work with any secure firefox release.
Please move to some of the alternatives suggested at
http://conkeror.org/Alternatives.
2020-02-09 22:48:27 +01:00
Maximilian Bosch dd6a291e9f
gcc-snapshot: remove
Package is marked as broken for >2 years and used a fairly old
snapshot from the gcc7-branch, so I fairly doubt that this is
somewhere used (and is also pretty misleading as you don't expect a
random snapshot from gcc7 at `pkgs.gcc-snapshot`).
2020-02-09 22:46:29 +01:00
Florian Klink 84af9839e0 firefoxPackages.*, firefox-esr*, icecat: add aliases 2020-02-09 22:33:33 +01:00
Florian Klink cbbb81c830
Merge pull request #79135 from dtzWill/fix/moby-now-linuxkit
moby: remove, merged into linuxkit in 2018
2020-02-05 01:09:15 +01:00
Will Dietz 3e83806771
moby: remove, merged into linuxkit in 2018
Don't alias linuxkit, as linuxkit is not a drop-in replacement.
Instead, throw with an explanation.
(thanks reviewers!)
2020-02-04 17:51:03 -06:00
Maximilian Bosch f28acbdd33
Merge pull request #79221 from Ma27/bump-oracle-sqldeveloper
sqldeveloper: {17.4.1.054.0712,18.2.0.183.1748} -> 19.4.0.354.1759
2020-02-04 22:25:44 +01:00
Maximilian Bosch 294f667121
sqldeveloper: {17.4.1.054.0712,18.2.0.183.1748} -> 19.4.0.354.1759
There are no new releases of sqldeveloper v17/v18 and I don't think that
we should keep obviously unmaintained software that interacts with
database systems.

I removed `sqldeveloper_18` and `pkgs.sqldeveloper` now points to
version 19.4. Unfortunately I had to drop darwin support as JavaFX is
required for 19.4 which is part of the `oraclejdk` which isn't packaged
for darwin yet.

For further information please refer to the release notes:

https://www.oracle.com/technetwork/developer-tools/sql-developer/downloads/sqldev-relnotes-194-5908846.html
2020-02-04 13:51:52 +01:00
Marek Mahut 65a1a68614 dat: move from all-packages to aliases 2020-02-04 12:52:54 +01:00
Will Dietz ccdfbcd63c
Merge pull request #78661 from dtzWill/fix/matrique-alias-for-spectral
matrique: move to aliases.nix, not primary attribute name
2020-02-03 17:39:27 -06:00
Will Dietz 67ab3bab81
matrique: move to aliases.nix, not primary attribute name
Noticed when searching for the spectral package:

https://nixos.org/nixos/packages.html?channel=nixos-unstable&query=%5Espectral

.. which presently indicates `matrique` is the attribute name.

(matrique became spectral at some point in 2018)
2020-02-03 17:37:25 -06:00
worldofpeace 74e4cb7ea4
Merge pull request #78543 from Atemu/dnscrypt-proxy2-service
nixos/dnscrypt-proxy2: init
2020-02-02 23:02:06 -05:00
worldofpeace 39e893c468 dnscrypt-proxy: remove 2020-02-02 21:51:19 -05:00
Florian Klink a1bcf2c90e
Merge pull request #77426 from lheckemann/remove-otter
otter-browser: remove
2020-02-02 22:29:35 +01:00
Linus Heckemann c99e248f3c otter-browser: remove
I have no interest in maintaining this anymore and it has no other maintainers.
2020-02-02 22:28:20 +01:00
Maximilian Bosch 0c960262d1
oraclejdk8: document removals in the release notes 2020-02-02 12:11:50 +01:00
rnhmjoj 1c38ce51ef
rxvt-unicode: add aliases for name change 2020-02-02 12:00:51 +01:00
Maximilian Bosch f73d725967 llvm_{3,4}: re-add attributes with an error message about their removal
With this change, expressions relying on those old LLVM versions will
fail with a meaningful error message.
2020-01-30 18:39:42 -05:00
markuskowa 67a71b6fca
Merge pull request #78436 from wucke13/foxtrotgps
foxtrotgps: init at 1.2.2
2020-01-27 17:48:12 +01:00
wucke13 f186045313 foxtrotgps: init at 1.2.2 2020-01-27 13:17:35 +01:00
gnidorah ea77cad569 Revert "Added support for libfprint 1.90"
This reverts commit b60d5692bf.
2020-01-25 22:56:12 +03:00
Samuel Dionne-Riel 90441b4b47
Merge pull request #78216 from samueldr/u-boot/update/2020.01
uboot: 2019.10 -> 2020.01
2020-01-22 00:49:57 -05:00
Samuel Dionne-Riel 7943c33087 uboot: ubootBeagleboneBlack -> ubootAmx335xEVM
See u-boot@8fa7f65dd02c176ee6021eaf40114560b8954ba2

>    configs: Remove am335x_boneblack_defconfig
>
>    The am335x_evm_defconfig supports all am335x_boneblack variants. Remove
>    the redundant am335x_boneblack_defconfig.
2020-01-21 17:09:05 -05:00
worldofpeace b7b4e443fc xf86_input_multitouch: remove
The source repo doesn't exist and it hasn't been touched in 8 years.
There is also no module to interface with it in NixOS.
2020-01-20 16:10:01 -05:00
worldofpeace afe27e517b nixos/multitouch: remove
On numerous occasions I have seen users mistake this
module as libinput because it being called "multitouch"
and them being unaware that the actually module they want
is libinput. They then run into several decrepit bugs due
to the completely out-of-date nature of the underlying package.
The underlying package hasn't been changed to an up-to-date
fork in a period of 8 years. I don't consider this to be production quality.
However, I'm not opposed for the module being readded to NixOS
with new packaging, and a better name.
2020-01-20 16:09:29 -05:00
Florian Klink 1efaa03d95 firefoxPackages.tor-browser*, tor-browser-bundle: remove
These are all based on firefox versions with known vulnerabilities
exploited in the wild.

We seriously shouldn't ship this in nixpkgs, especially not for
sensitive applications as the Tor Browser.

`tor-browser-bundle` is just a wrapper around
`firefoxPackages.tor-browser`, so let's remove it too.

`tor-browser-bundle-bin` is the much safer bet, which is individually
downloaded from `dist.torproject.org` and just `patchelf`-ed locally to
work on NixOS.

Co-Authored-By: Alyssa Ross <hi@alyssa.is>
Co-Authored-By: Andreas Rammhold <andreas@rammhold.de>
Co-Authored-By: Graham Christensen <graham@grahamc.com>
2020-01-10 18:34:22 +01:00
worldofpeace a14e1e343b
Merge pull request #77078 from fgaz/facette/remove
facette: remove
2020-01-07 18:53:09 -05:00
Francesco Gazzetta d56e84b9c4 facette: remove
It never actually built within the sandbox, and it's now more difficult
to package than ever
2020-01-07 16:12:49 +01:00
Gabriel Ebner 3604ae8394
Merge pull request #74259 from Evils-Devils/kicad-unstable
kicad: cleanup, fix and update
2020-01-03 20:14:07 +01:00
adisbladis 74f5c7f3d1
compton/picom: 7.2 -> 7.5
Also change the derivation attribute and name to Picom, a maintained
fork of Compton.
2020-01-03 12:52:02 +00:00
Evils c61170168d kicad: switch to best try from unstable and 5.1.5
make unstable use kicad-libraries
  still using a link in $out..., not sure that's a bad thing
  this allows setting that path in makeWrapperArgs
    can't use $out there

kicad-with-packages3d -> kicad and kicad-small

default to OCCT, OCE is outdated
  enforce OCCT on aarch64, where OCE is broken
  withOCE flag allows using OCE on non-aarch64
2020-01-02 03:45:34 +01:00
Jörg Thalheim 89c55c0a6d
net-snmp: split outputs (#76155)
net-snmp: split outputs
2019-12-25 06:27:55 +00:00
José Romildo Malaquias 0529b27d18 catfish: move to pkgs/desktops/xfce/applications
Since release 1.4.6 catfish is an Xfce Project. See https://bluesabre.org/2018/07/15/catfish-1-4-6-released-now-an-xfce-project

Makes an alias for catfish.
2019-12-23 07:54:59 -03:00
Jörg Thalheim 8a57552c18
nixpkgs-review: 2.1.0 -> 2.1.1
changelog: https://github.com/Mic92/nixpkgs-review/releases/tag/2.1.1
2019-12-22 09:26:57 +00:00
Jörg Thalheim 725f85e271
net-snmp: rename from net_snmp 2019-12-21 22:56:08 +00:00
c0bw3b b1b55ba0f6 rdf4store: throw removal messages
Addition to #74214
I forgot to add aliases for package and modules after removal
2019-12-21 18:46:15 +01:00
Dmitry Kalinkin dfc9845838
texlive: provide a working pygmentex executable
The old top-level pygmentex package is replaced with an alias.
2019-12-15 19:52:17 -05:00
Frederik Rietdijk dfdf1597a7 Merge master into staging-next 2019-12-13 11:43:39 +01:00
Renaud a8df1b1230
mbedtls_1_3: clarify deprecation message 2019-12-11 10:55:40 +01:00
worldofpeace 4315026324
Merge pull request #75468 from wamserma/remove-hexen
hexen: remove abandoned software
2019-12-10 23:34:18 -05:00
worldofpeace 419dacd3d4 pmenu: remove
Got the ok from romildo to remove this as jgmenu [0]
is more complete, and has a module based off pmenu.

[0]: https://github.com/johanmalm/jgmenu
2019-12-10 22:42:06 -05:00
worldofpeace 249a489631 libindicate: remove 2019-12-10 22:41:24 -05:00
worldofpeace 7cae93c29c bootchart: remove 2019-12-10 22:40:44 -05:00
worldofpeace 5027d9f9e2 oblogout: remove
The repo is archived.
https://github.com/nikdoof/oblogout
2019-12-10 22:40:18 -05:00
worldofpeace c00538ae3a recordmydesktop: remove
The qt version is using qt4 pyqt and the gtk version gtk2 pygtk.
Not seeing any activity at all at https://sourceforge.net/p/recordmydesktop/bugs/
2019-12-10 22:39:37 -05:00
worldofpeace 69d5fd868d diffuse: remove 2019-12-10 22:39:04 -05:00
worldofpeace 865b203471 winswitch: remove 2019-12-10 22:38:19 -05:00
worldofpeace f4119fffdd libsexy: remove
People have only been using this for the spell-entry widget, i.e even
hexchat just has the code vendored and are maintaining it themselves.

There is a continuation that could be packaged if anyone needs it
* https://github.com/TingPing/libsexy3
but currently no package within nixpkgs has a use for this.
2019-12-10 22:37:44 -05:00
worldofpeace d7159adcba keymon: remove 2019-12-10 22:37:14 -05:00
worldofpeace 517872a227 hamster-time-tracker: remove
This package actually uses the old abandoned code base.
However the code base has been revieved by new maintainers
* https://github.com/projecthamster/
if there is a request for it could be re-added to nixpkgs.
2019-12-10 22:35:03 -05:00
worldofpeace 30b5b7944c batti: remove
This one was already marked as broken.
2019-12-10 22:34:30 -05:00
worldofpeace af7a1dad84 gnome15: remove 2019-12-10 22:33:52 -05:00
worldofpeace b99ca2f33f mirage: remove 2019-12-10 22:33:11 -05:00
worldofpeace 28d4283121 mcomix: remove 2019-12-10 22:33:11 -05:00
worldofpeace cd6c028a1b cinepaint: remove 2019-12-10 22:33:09 -05:00
Markus S. Wamser 1deb709fcf hexen: remove abandoned software 2019-12-11 01:03:44 +01:00
Frederik Rietdijk f3618342ec Merge staging-next into staging 2019-12-10 19:01:27 +01:00
c0bw3b 35b21d1988 firestr: remove package
It's been marked as broken for 4 years
2019-12-08 23:27:48 +01:00
c0bw3b fdffba3f86 coprthr: remove package
It's been marked as broken for 5 years
2019-12-08 23:27:45 +01:00
c0bw3b f85826a2ad alienfx: remove package
Upstream is gone
2019-12-08 23:27:41 +01:00
c0bw3b d04d1c65bb mbedtls_1_3: remove EoL version 2019-12-08 22:56:14 +01:00
André-Patrick Bubel 83655d6993
bluez: 5.51 -> 5.52, aliased bluezFull to bluez 2019-12-08 20:53:49 +01:00
worldofpeace a11e023201 webkitgtk24x-gtk{3.2}: remove
It goes without saying that we should remove this 😅️.
2019-12-05 07:01:28 -05:00
worldofpeace afb2182f33 uzbl: remove
https://github.com/uzbl/uzbl/issues/408

Frightening version of webkitgtk used here.
2019-12-05 07:01:27 -05:00
worldofpeace 37793c8099 vimprobable2: remove 2019-12-05 05:53:09 -05:00
Elyhaka b60d5692bf Added support for libfprint 1.90 2019-12-01 10:42:16 +01:00
Dima 0541d071af samba3, fusesmb: removing
Samba 3 has been discontinued since Q1/2015. So I think it's time
to just wipe it from the pkgs. FuseSMB is pretty much abandoned,
upstream does not exist and it's also not as useful as it used to
be anyways.
2019-11-26 19:56:16 +01:00
Florian Klink 02f869ff30 osquery: remove
osquery was marked as broken since April.

If somebody steps up to fix it, we can always revive it from the
histroy, but there's not much value in shipping completely broken things
in current master.

cc @ma27
2019-11-24 22:38:07 +01:00
Florian Klink 8ab403c089 beegfs: remove
This has been marked as broken since https://github.com/NixOS/nixpkgs/pull/66352

Closes #73998.
2019-11-24 17:36:30 +01:00
Jan Tojnar 62a09e7029
phonon: remove qt4
Qt4 is no longer supported.

https://phabricator.kde.org/D22688

Co-authored-by: worldofpeace <worldofpeace@protonmail.ch>
2019-11-22 20:25:48 +01:00
Jan Tojnar c3c30bc59e
libsForQt5.phonon-backend-vlc: 0.9.0 → 0.11.1
Required to build with Phonon 4.11 (https://github.com/NixOS/nixpkgs/pull/71745).

Requires qttools for Qt5LinguistTools.

Qt4 support removed since Phonon no longer supports it either.

Co-authored-by: worldofpeace <worldofpeace@protonmail.ch>
2019-11-22 20:25:29 +01:00
Jan Tojnar c6147f7ec8
libsForQt5.phonon-backend-gstreamer: 4.9.0 → 4.10.0
Required to build with Phonon 4.11 (https://github.com/NixOS/nixpkgs/pull/71745). Not having this blocks the channels.

Requires qttools for Qt5LinguistTools.

Qt4 support removed since Phonon no longer supports it either.

Co-authored-by: worldofpeace <worldofpeace@protonmail.ch>
2019-11-22 20:24:43 +01:00
Christine Koppelt e58e0d8ae0 seg3d: remove
(#70774)
2019-11-21 23:31:21 +01:00
Jan Tojnar 6fb5b6be98
Various GNOME leaf package updates (#73790)
Various GNOME leaf package updates
2019-11-21 01:00:42 +01:00
Jan Tojnar a7f4c78792
gnome-user-docs: move to top-level again 2019-11-20 04:58:00 +01:00
worldofpeace ac70cd728c xfce4-14: move to xfce and have only one version of xfce
All code that was at xfce4-14 has been moved to xfce/*.
Old expressions that aren't rewritten might be abandoned or broken.

Additonally I've ported the xfce4-14 thunar expression to support
thunarPlugins. We can now support this interface in the Xfce module
again, although I'm not sure if we have any plugins packaged that support
latest thunar.
2019-11-19 18:47:02 -05:00
Christine Koppelt b8cbb64aad coredumper: remove 2019-11-16 01:55:04 +01:00
worldofpeace ce26b3eaf0 nixos/slim: remove
The SLIM project is abandoned and their last release was in 2013.
Because of this it poses a security risk to systems, no one is working
on it or picked up maintenance. It also lacks compatibility with systemd
and logind sessions. For users, there liikely isn't anything like slim
that's as lightweight in terms of dependencies.
2019-11-11 17:10:41 -05:00
worldofpeace 7a551b3d43 fontconfig-ultimate: remove 2019-11-06 12:02:35 -05:00
worldofpeace 7c4f09f695
Merge pull request #72319 from gnidorah/mame
mame: init at 0.215
2019-11-03 19:18:53 +00:00
gnidorah cf17479caa sdlmame: drop
There are no longer separate programs called SDLMAME or SDLMESS. Instead, the SDL capability is included in MAME and MESS, and the makefile will auto-detect if you are on a non-Windows system and run accordingly.
2019-11-03 20:02:16 +03:00
gnidorah f73694a64a mess: drop
MAME and MESS are now combined as one distribution as of the 0.162 release and offered as a MAME binary (MESS is included in the build).
2019-11-03 20:02:16 +03:00
WilliButz e4c372445f
v8_3_16_14: remove unreferenced and outdated package 2019-11-01 14:28:03 +01:00
Maximilian Bosch 5b640bfd08
virtmanager{,-qt}: rename to virt-manager{,-qt}
Both the executable and the derivation's pname are named `virt-manager`,
however the attribute name is named `virtmanager` which is pretty
confusing when e.g. using this package with `nix run`.

Thus I renamed the package accordingly and added aliases for
backwards-compatibility (both attributes aren't used somewhere else
in nixpkgs, so the rename should be fine).

Also several other distros use `virt-manager` as package name like
Arch[1], Debian[2] or Fedora[3].

[1] https://www.archlinux.org/packages/community/any/virt-manager/
[2] https://packages.debian.org/buster/virt-manager
[3] https://apps.fedoraproject.org/packages/virt-manager
2019-10-29 13:34:54 +01:00
Austin Seipp 21c0cc1eee nats-server: rename (from gnatsd), 1.4.0 -> 2.1.0
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2019-10-28 21:50:14 -05:00
Jan Tojnar f849554226
Merge branch 'staging-next' into staging 2019-10-20 16:49:29 +02:00
Frederik Rietdijk ad8bd84fc9 Merge master into staging-next 2019-10-20 16:22:45 +02:00
worldofpeace b3d7f8125c transporter: remove
This application's source repo has been archived on GitHub.
That means it's read-only, essentially abandoned.
2019-10-19 22:47:37 -04:00
worldofpeace 673a73602f
Merge pull request #71174 from hedning/spidermonkey_60-bump
Spidermonkey 60 bump
2019-10-19 00:07:09 +00:00
Florian Klink 511b1823fc pinentry: change attributes to dashes, alias old ones 2019-10-16 20:30:58 -04:00
worldofpeace 2fbccbc728 Revert "Merge pull request #71095 from flokli/pinentry-cleanup"
This reverts commit 823da4d492, reversing
changes made to b75c8ee3bc.
2019-10-16 20:28:21 -04:00
Florian Klink 66081ceb16 pinentry: change attributes to dashes, alias old ones 2019-10-16 19:56:49 -04:00
Tor Hedin Brønner 18d7929e95 spidermonkey_52: drop, as is unused
`gnome-shell-extensions` switched over to `spidermonkey_60` in 3.34 leaving
`spidermonkey_52` unused.
2019-10-16 16:53:19 +02:00
Frederik Rietdijk 12441bdf9f Merge staging-next into staging 2019-10-16 11:17:12 +02:00
Jörg Thalheim 4d28337d57
testdisk: deduplicating testdisk/photorec (#69945)
testdisk: deduplicating testdisk/photorec
2019-10-14 10:53:09 +01:00
Dima 10bfa40677 testdisk: deduplicating testdisk/photorec
Testdisk/Photorec has been packaged twice. This deduplicates
the packages by consolidating the packages into one and throwing
an error upon use of the outdated package.

this also adds qphotorec, which was previously not built and ensures
it's wrapped correctly.

Please note that I took the liberty to merge the maintainers lists.
2019-10-13 11:39:26 +02:00
worldofpeace 2d0056b149 aliases.nix: update jikes message 2019-10-12 16:29:27 -04:00
Jan Tojnar e2e3861d6b
Merge branch 'staging-next' into staging 2019-10-12 00:51:55 +02:00
worldofpeace 4266a1e0b4 valadoc: remove 2019-10-10 13:18:23 -04:00
Christine Koppelt 54e4b13887 jikes: removing 2019-10-08 08:29:36 -07:00
Greizgh eec7cab81d mumble,murmur: 1.2.19 -> 1.3.0 2019-10-07 18:59:21 +02:00
Trolli Schmittlauch 45a9542a37 corebird: move deprecation warning to aliases and release notes 2019-10-03 00:41:33 +02:00
Mario Rodas 0449518afb
zeek: 2.5.5 -> 3.0.0 2019-09-29 21:21:21 -05:00
Vladimír Čunát 217cf982c7
Merge branch 'master' into staging-next 2019-09-27 22:13:02 +02:00
Samuel Dionne-Riel 95005c1039
Merge pull request #68265 from tkerber/rpi4
Various: Add support for raspberry pi 4.
2019-09-27 14:35:17 -04:00
Vladimír Čunát eab41878ac
Merge branch 'master' into staging-next 2019-09-24 08:14:34 +02:00
Guillaume Maudoux 841f3d031b mozart2: init at 2.0.1 2019-09-23 11:32:08 +02:00
Vladimír Čunát 22a216849b
Re-Revert "Merge branch 'staging-next'"
This reverts commit f8a8fc6c7c.
2019-09-22 09:38:09 +02:00
Vladimír Čunát f8a8fc6c7c
Revert "Merge branch 'staging-next'"
This reverts commit 41af38f372, reversing
changes made to f0fec244ca.

Let's delay this.  We have some serious regressions.
2019-09-21 20:05:09 +02:00
Vladimír Čunát 41af38f372
Merge branch 'staging-next' 2019-09-21 13:14:09 +02:00
Pierre Bourdon 21c92c4a1d
mono-zeroconf: remove broken package
No dependencies within nixpkgs, and the package has not built
successfully since 2018-04-29 according to Hydra[1].

[1] https://hydra.nixos.org/build/100604053
2019-09-20 14:16:49 +02:00
worldofpeace 1e6f4fb2bc
Merge pull request #68983 from worldofpeace/xfce-cleanup
Touchups for nixos/xfce4-14 for 19.09
2019-09-19 13:25:03 -04:00
Anton-Latukha 37de7c56ce qt_gstreamer1: drop
If someone would be interested - last commit builds with {Qt5, Qt5 config flag}
2019-09-19 17:50:46 +03:00
Anton-Latukha dcb86e8856 qt-gstreamer: drop
(Progresses Qt4 cleaup #33248, gstreamer cleanup #39975)

This is legacy version of a newer and legacy unmaintained version.
It is Qt4 and gstreamer 0.10.
This is a GNOME-related project, so Qt support dropped.
qt-gstreamers legacy has no dependencies.
2019-09-19 17:50:45 +03:00
worldofpeace a8167d10f6 xfceUnstable: make an alias
To be removed with xfce4-12.
2019-09-17 16:37:28 -04:00
Thomas Kerber cc5baf2d86
Various: Add support for raspberry pi 4. 2019-09-17 04:05:16 +01:00
Vladimír Čunát b6c6e1f9e8
Merge branch 'master' into staging-next 2019-09-15 13:18:54 +02:00
WilliButz cec8524112
sambaMaster: remove outdated package 2019-09-13 17:16:27 +02:00
Jan Tojnar a441eaa7b1
Merge branch 'staging-next' into staging 2019-09-12 22:49:43 +02:00
zimbatm ab0308604b
cide: remove (#68505) 2019-09-12 22:02:26 +02:00
Jan Tojnar 8ab501545d
sup: remove (#68416)
sup: remove
2019-09-10 19:43:18 +02:00
Michael Fellinger da7886c940
sup: remove 2019-09-10 15:49:31 +02:00
worldofpeace 0f3f515647
Merge pull request #68355 from nlewo/pr-remove-skydive
skydive: remove it from nixpkgs
2019-09-10 09:10:00 -04:00
Antoine Eiche 636e15507b skydive: remove it from nixpkgs
The current Skydive version can not be build with a recent Go version
and the maintainer (lewo) is no longer interested in maintaining it.
2019-09-10 08:34:54 +02:00
Jan Tojnar 1716d62f63
Merge branch 'staging-next' into staging 2019-09-10 07:06:45 +02:00
Izorkin c13c903934 mariadb-connector-c: remove libmysql alias 2019-09-09 15:55:35 +03:00
Izorkin 329a88efa7 treewide: replace mysql.connector-c to libmysqlclient 2019-09-09 15:55:34 +03:00
Jan Tojnar 7c22e3af30
gmic-qt-krita: rename from gmic_krita_qt 2019-09-07 19:55:10 +02:00
adisbladis 8e2fc57a80
postgresql_9_4: Remove package
It's only supported until February 13, 2020 which is during the 19.09 life cycle.
2019-09-07 15:31:27 +01:00
Alyssa Ross d3983caf45 ruby_2_3: remove
This has been EOL since December. We shouldn't still be facilitating
its use.

Fixes https://github.com/NixOS/nixpkgs/pull/67977.
2019-09-07 13:09:17 +00:00
Nikolay Amiantov 3a0c6f1402 zeroc-ice: 3.6.3 -> 3.7.2
Rename from zeroc_ice.
Take various improvements from Arch zero-ice package.
Move old version to zeroc-ice-36.
2019-09-06 20:21:09 +03:00
Maximilian Bosch e4bc0e2b5f
weechatScripts.weechat-xmpp: remove
This plugin is fairly outdated and depends on python2 libraries that
don't receive any updates either (xmpppy for instance[1]).

[1] https://pypi.org/project/xmpppy/
2019-09-05 20:03:46 +02:00
Will Dietz 222422f87f
usbguard-nox: deprecate 2019-09-04 21:24:11 -05:00
Maximilian Bosch 1a1d1bc389
Merge pull request #67786 from danieldk/maturin
maturin: 0.6.1 -> 0.7.0
2019-08-31 01:44:25 +02:00
Daniël de Kok 7e29ce8a77 maturin: 0.6.1 -> 0.7.0
pyo3-pack has been renamed to maturin version 0.7.0. Other larger
changes are:

- Mixed rust/python layout
- Added PEP 517 support
- Support settings all applicable fields from the python core
  metadata specification in Cargo.toml
2019-08-30 20:59:44 +02:00
adisbladis 41d1b8fa88
emacsPackages: Drop old emacsPackages (non-NG) sets
These have been deprecated for a long time now and has not seen much maintenance.
2019-08-30 16:43:16 +01:00
worldofpeace 0552f4dc73
Merge pull request #67214 from stefano-m/master
adoptopenjdk-icedtea-web: rename from icedtea_web
2019-08-23 16:43:52 -04:00
Stefano Mazzucco a6d234e9e9 adoptopenjdk-icedtea-web: rename from icedtea_web
This is a follow up of https://github.com/NixOS/nixpkgs/pull/66422

- rename icedtea_web to adoptopenjdk-icedtea-web to reflect the new governance
- add icedtea_web and icedtea8_web to aliases.nix for backwards compatibility
- update the attribute name where icedtea_web is used
2019-08-23 21:12:59 +01:00
Robin Gloster c7e75df21f
Merge remote-tracking branch 'upstream/master' into openssl-1.1 2019-08-23 02:00:31 +02:00
Jan Tojnar 991c1ebeb1
celluloid: 0.16 → 0.17
Renamed from gnome-mpv.

https://github.com/celluloid-player/celluloid/releases/tag/v0.17
2019-08-22 19:47:07 +02:00
Robin Gloster 948b3e34a5
squid: remove v3, default to v4 2019-08-22 00:39:52 +02:00
Marek Mahut 9541c6b7bf
Merge pull request #66740 from lopsided98/processing-update
processing: 3.4 -> 3.5.3
2019-08-19 08:43:13 +02:00
Ben Wolsieffer 939cd1bf4c processing: 3.4 -> 3.5.3 2019-08-16 22:22:03 -04:00
Dmitry Kalinkin 34224c7ba0
Merge pull request #66117 from veprbl/pr/hepmc_2_06_10
hepmc: 2.06.09 -> 2.06.10
2019-08-11 22:16:16 -04:00
Aaron Andersen 26f128c1af nylas-mail-bin: drop package which is no longer supported upstream 2019-08-11 17:44:05 -04:00
Markus Kowalewski f873471bfe
infiniband-diags: remove
All commands provided by infiniband-diags are already
included in rdma-core, which is required to build infiniband-diags.
2019-08-09 13:36:56 +02:00
Bjørn Forsman a920c2aabd v4l-utils: align attr with pkg name 2019-08-07 20:44:13 +02:00
Dmitry Kalinkin ecef988054
hepmc: rename to hepmc2 2019-08-05 17:47:43 -04:00
Frederik Rietdijk d20a59d2e5 Merge master into staging-next 2019-08-02 23:27:18 +02:00
Jörg Thalheim c740bbf1ba
mariadb: 10.3.15 -> 10.3.17 (#63355)
mariadb: 10.3.15 -> 10.3.17
2019-08-02 14:54:03 +01:00
Frederik Rietdijk 6f723b9bad Merge master into staging-next 2019-08-02 09:18:37 +02:00
Nikolay Amiantov 17d29239b8 mumble: refactor and fix Qt 5 version
* Use -rc version instead of a git checkout. Rename derivation
  accordingly;
* Change PLUGIN_PATH similar to Arch;
* Fix install phase so that random files aren't installed and plugins
  use separate directory;
* Use linkSoVersions to remove duplicate libraries.
2019-08-01 23:06:13 +00:00
Izorkin 0b8da0cbfb mariadb: add aliases for mariadb.client 2019-08-01 20:26:23 +03:00
Frederik Rietdijk 55e4555b77 Merge master into staging-next 2019-08-01 09:42:54 +02:00
WilliButz f748b501e8
yarn2nix-moretea: init at 2019-04-10 2019-07-25 17:15:00 +02:00
Orivej Desh 32fbbc6f9b Merge master into staging 2019-07-25 09:23:21 +00:00
Orivej Desh b5d1d50aa9 google-gflags: move to aliases.nix
google-gflags were renamed to gflags in 2012:
https://github.com/gflags/gflags/#25-january-2012

gflags.name will be updated in staging.
2019-07-25 09:18:32 +00:00
worldofpeace b1bc0645ea gdk-pixbuf: rename from gdk_pixbuf 2019-07-22 18:50:57 -04:00
worldofpeace a215eca765 qtpfsgui: remove
https://github.com/LuminanceHDR points to the homepage
of this package which has continued development.
Wikipedia also cites that LuminanceHDR was formerly qtpfsgui.
2019-06-27 03:18:06 -04:00
Matthew Bauer 4d6f65b81f
Merge pull request #62167 from matthewbauer/alias-libgl
Add libGL* aliases
2019-06-17 15:18:29 -04:00
Matthew Bauer 263f5891b6 treewide: mesa_noglu, mesa_drivers, libGL_driver -> mesa
Just use mesa for these to be more clear. Move these to aliases.nix
2019-06-17 14:43:18 -04:00
Matthieu Coudron dd14c5b21d
Merge pull request #55475 from Moredread/slic3r
prusa-slicer: renamed from slic3r-prusa3d and updated 1.41.3 -> 2.0.0
2019-06-11 19:25:27 +09:00
Daniël de Kok 3093e35f8f bittorrentSync: remove 2019-06-03 09:16:13 +02:00
Joachim F e8445a367a
Merge pull request #61994 from JohnAZoidberg/remove-cpp-gsl
cpp-gsl: remove in favor of microsoft_gsl
2019-05-29 20:01:29 +00:00
Daniel Schaefer eccb90a2d9 compton: 0.1_beta2.5 -> 6.2 (#61681)
* compton-git: 5.1-rc2 -> 6.2

vsync is now a boolean option, see:
https://github.com/yshui/compton/pull/130

menu-opacity is deprecated and there's a warning that says:
Please use the wintype option `opacity` of `popup_menu` and
`dropdown_menu` instead.

* nixos/compton: Keep vSync option backwards compatible

The new upstream option tries to make the best choice for the user.
Therefore the behaviour should stay the same with this backwards
compatibility patch.

* compton-git: Remove DRM option

It's deprecated and shouldn't be used.
https://github.com/yshui/compton/pull/130/files#r285505456

* compton-git: Remove new_backends option

Was removed in "Let old/new backends co-exist"
b0c5db9f5aa500dc3568cc6fe68493df98794d4d

* compton: 0.1_beta2.5 -> 6.2

Drop the legacy, unmaintained version and use the fork for real.
2019-05-28 13:37:13 +02:00
Markus Kowalewski 069167de8a
gnuradio: rename plugins gnuradio-* -> gr-*
* harmonize plugin names with repology
* added aliases to maintain backwards compatability
2019-05-27 14:26:31 +02:00
André-Patrick Bubel 0ee35c56bd
prusa-slicer: renamed from slic3r-prusa3d and updated 1.41.3 -> 2.0.0
The slic3r-prusa3d package was renamed by upstream to PrusaSlicer with
the 2.0.0 release to reduce confusion with the slic3r package.

We compile against wxGTK 3.0, as with 3.1 the application crashes (see
2019-05-26 23:42:46 +02:00
Daniel Schaefer 8980e3ca62 cpp-gsl: remove in favor of microsoft_gsl
It's the same package twice but cpp-gsl is older.
2019-05-24 11:25:36 +02:00
c0bw3b 3a2ccb570d Revert "pstree: remove and alias to psmisc"
This reverts commit 4f8bf685f8.

Reason: psmisc is Linux-platforms only
2019-05-20 21:51:33 +02:00
c0bw3b e6b2fbeb70 memtest86: remove and alias to memtest86plus
Legacy memtest86 was broken since NixOS 16.09
+ we've already been using memtest86+ fork
through 'boot.loader.grub.memtest86.enable'
2019-05-08 17:10:17 +02:00
c0bw3b 4f8bf685f8 pstree: remove and alias to psmisc 2019-05-08 02:53:09 +09:00
Michael Fellinger cd1bfc3045 ppl-address-book: delete 2019-05-03 18:47:17 +02:00
Elis Hirwing 02cd2b00e7
emby: Drop package and module and refer to jellyfin 2019-05-01 17:47:32 +02:00
Ivan Kozik cf2d0ed49a Remove prometheus-statsd-bridge alias
The executable name and arguments are different in prometheus-statsd-exporter.
2019-04-22 00:39:57 +00:00
worldofpeace 6cc43add3f
Merge pull request #59375 from worldofpeace/font-droid-throw
aliases: add throw for font-droid
2019-04-13 14:18:15 -04:00
worldofpeace 33e2b1acfb aliases: add throw for font-droid 2019-04-12 16:42:45 -04:00
worldofpeace 32fc68db57 yarn2nix: move to aliases.nix 2019-04-12 16:23:09 -04:00
Michael Fellinger 91e766e44f rhc: remove 2019-04-09 09:02:00 +02:00
Ben Wolsieffer 69f2787af9 buildbot: remove deprecated aliases 2019-03-22 18:43:22 -04:00
Ben Wolsieffer b2e11e0cdf buildbot: 1.8.1 -> 2.1.0 2019-03-22 18:43:15 -04:00
Silvan Mosberger a540993d62
Merge pull request #56171 from bachp/tautulli
tautulli/plexpy: 1.4.25 -> 2.1.26 (renamed)
2019-03-08 16:52:40 +01:00
Jan Tojnar d3ff902e94
webkit: move to aliases 2019-03-06 00:20:55 +01:00
Pascal Bach 8b3ffebcdc tautulli/plexpy: 1.4.25 -> 2.1.26 (renamed)
PlexPy was renamed to Tautulli.

This renames the module as well as the application accordingly.
Aliases are kept for backwards compatibility.

# Conflicts:
#	nixos/modules/services/misc/tautulli.nix
2019-02-28 19:07:00 +01:00
Jörg Thalheim 699d313052
Merge pull request #55967 from Mic92/font-awesome
font-awesome_5: 5.6.3 -> 5.7.2
2019-02-26 14:12:52 +00:00
Jörg Thalheim 0a393f53a9
font-awesome: make font-awesome_5 the defautl
It is confusing that font-awesome_4 is the font,
one get when installing font-awesome-ttf.
I don't really see a use case to keep the old version around.
2019-02-17 20:40:14 +00:00
Vladimír Čunát f7f1a2f54e
Merge branch 'master' into staging-next
A mass darwin rebuild from master (#55784).
2019-02-17 08:05:24 +01:00
Vladimír Čunát 10f37a312d
nxproxy: drop the warning introduced by #55723
The tarball job fails when warnings are detected (and blocks channel).
And that's good, because `nix-env -qa` also gets these warnings.

I'm afraid we still don't have a good way to deprecate attributes,
exactly because the inability to distinguish these "listing actions"
from explicit usage (direct or transitive).
2019-02-16 16:50:18 +01:00
Maximilian Bosch 346df14000
nx-libs: minor fixes
* Add an alias with a deprecation warning for `nxproxy` to avoid an
  immediate breaking change.

* Use the default shell used in the build environment (`stdenv.shell`)
  for patching. This shell is in the environment and thus used to patch
  scripts using `patchShebangs`. The shell is referenced as `stdenv.shell`
  in Makefiles to patch the remaining occurrences of `/bin/bash` in the
  build environment.
2019-02-16 05:03:10 +01:00
Vladimír Čunát f55f45f273
pantheon, aliases: remove remaining gst-ffmpeg
This fixes evaluation.  I'm not sure why pantheon.elementary-videos
was mixing gst 1 with old gst-ffmpeg.
/cc #48637, #50220.
2019-02-01 09:43:57 +01:00
Piotr Bogdan 0fb0af65b0 gst-ffmpeg: drop 2019-01-27 00:41:18 +00:00
Danylo Hlynskyi 4fb8bc8238
postgresql: cleanup postgis (#54396)
postgis: cleanup

Another part of https://github.com/NixOS/nixpkgs/pull/38698, though I did cleanup even more.
Moving docs to separate output should save another 30MB.

I did pin poppler to 0.61 just to be sure GDAL doesn't break again next
time poppler changes internal APIs.
2019-01-26 21:15:43 +02:00
Danylo Hlynskyi 8e985dced0
postgresql: reorganize package and its extensions (#54319)
* postgresql: reorganize package and it's extensions

Extracts some useful parts of https://github.com/NixOS/nixpkgs/pull/38698,
in particular, it's vision that postgresql plugins should be namespaced.
2019-01-26 19:46:57 +02:00
Austin Seipp 5069fa0a30 nixpkgs: remove sapic-0.9
SAPIC is bundled with Tamarin and doesn't have separate releases
anymore; add an appropriate 'throw' clause to the alias so people know
where to find it.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2019-01-19 18:54:38 -06:00
Jörg Thalheim db804db878
Merge pull request #38964 from Moredread/wip/mediathekview
mediathekview: 9 -> 13.2.1
2019-01-19 12:45:14 +00:00
André-Patrick Bubel c18c25f0e9
zdfmediathk: Remove as it is obsolete and broken
The package `mediathekview` is the current alternative.
2019-01-19 13:26:41 +01:00
Yorick van Pelt eec46991e2
pkgs/top-level: move pg_tmp to aliases.nix 2019-01-16 13:21:06 +01:00
Jan Tojnar c5c2ac4f45
qrencode: merge with libqrencode 2019-01-01 17:19:07 +01:00
Lancelot SIX ce235f70ca postgresql_9_3: drop
Postgresql 9.3 reached end of life on november 11, 2018 (see
https://www.postgresql.org/about/news/1905/)

(Rebase of #52052. Closes #52052.)

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-12-31 08:44:57 -06:00
Michael Raskin ede54f9144
Merge pull request #52379 from erikarvstedt/tesseract
Major tesseract improvements
2018-12-20 14:41:48 +00:00
Erik Arvstedt 8d1ba999cb
tesseract: rename to tesseract4, add alias
This is more consistent with the naming of the most popular versioned pkgs.
2018-12-19 18:09:56 +01:00
worldofpeace b2c6efeaed liberation_ttf: drop binary packages
That means the following attributes are gone:
  - liberation_ttf_v1_binary
  - liberation_ttf_v2_binary

Because of this Libreoffice uses liberation source fonts

I've renamed these attributes because the binary form is gone:

  - liberation_ttf_v1_from_source -> liberation_ttf_v1
  - liberation_ttf_v2_from_source -> liberation_ttf_v2

They're aliases for these.
2018-12-18 10:10:36 -05:00
worldofpeace ec8d663d59 liberationsansnarrow: 1.07.3 -> 1.07.6, rename to liberation-sans-narrow
Upstream also moved to github
2018-12-18 10:10:36 -05:00
Frederik Rietdijk 5f554279ec Merge master into staging-next 2018-12-07 15:22:35 +01:00
worldofpeace f5e664f805 opensans-ttf: change source to salsa, rename to open-sans 2018-12-05 16:12:48 -05:00
Jan Tojnar a51a99c690
gobject-introspection: rename package
camelCase package name was a huge inconsistency in GNOME package set.
2018-12-02 12:42:29 +01:00
Vladyslav Mykhailichenko a470750ab4
gutenberg: 0.4.2 -> zola: 0.5.0 2018-11-18 00:53:15 +02:00
Matthew Bauer 2e18ba6c5a
Merge pull request #49776 from matthewbauer/atlas-remove
atlas: remove
2018-11-13 19:18:35 -06:00
Jörg Thalheim 7a86bc32cb
docker-compose: rename from docker_compose, python3 by default
The command is called docker-compose hence the package should be called the same.
Also prefer python3.
2018-11-11 11:16:44 +00:00