Commit Graph

71 Commits

Author SHA1 Message Date
Ivan Trubach
90fbf71333 treewide: remove maintainer goibhniu
Inactive in Nixpkgs since 2018 (and a single PR in 2022).
https://github.com/NixOS/nixpkgs/issues?q=author%3Acillianderoiste
2024-07-24 13:38:22 +03:00
Jan Tojnar
5c5c20919b adwaita-icon-theme: Move from gnome scope to top-level
It is widely used outside gnome – although it probably should not be.
2024-07-01 08:26:46 +02:00
Alexis Hildebrandt
755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00
Jan Tojnar
eb04659fc2 treewide: wrapGAppsHook → wrapGAppsHook3
This was achieved using the following command:

    sd 'wrapGAppsHook\b' wrapGAppsHook3 (rg -l 'wrapGAppsHook\b')

And then manually reverted the following changes:

- alias in top-level.nix
- function name in wrap-gapps-hook.sh
- comment in postFixup of at-spi2-core
- comment in gtk4
- comment in preFixup of 1password-gui/linux.nix
- comment in postFixup of qgis/unwrapped-ltr.nix and qgis/unwrapped.nix
- comment in postFixup of telegram-desktop
- comment in postFixup of fwupd
- buildCommand of mongodb-compass
- postFixup of xflux-gui
- comment in a patch in kdePackages.kde-gtk-config and plasma5Packages.kde-gtk-config
- description of programs.sway.wrapperFeatures.gtk NixOS option (manual rebuild)
2024-04-27 02:23:22 +02:00
Lord-Valen
f0fde0f8ce
guitarix: add lord-valen as maintainer 2024-04-05 15:18:49 -04:00
Lord-Valen
3f3b3e4705
guitarix: use fetchFromGitHub 2024-04-05 15:17:59 -04:00
Lord-Valen
af7b0f1bd8
guitarix: 0.44.1 -> 0.46.0 2024-03-29 18:46:13 -04:00
Lord-Valen
c949c1cacd
guitarix: use finalAttrs 2024-03-29 17:58:25 -04:00
stuebinm
ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00
annalee
9246733a3a
guitarix: gcc13 fixes with upstream patch 2024-01-14 17:02:20 +00:00
Kirill Radzikhovskyy
c08e458e7f guitarix: fix build 2023-10-30 19:49:32 +11:00
Anderson Torres
e24107b347 treewide: convert configureFlags to wafConfigureFlags when appropriate 2023-09-06 10:41:28 -03:00
Anderson Torres
f2f9262b92 treewide: waf.hook -> wafHook 2023-09-06 10:41:28 -03:00
Anderson Torres
9f52275e52 treewide: change wafConfigureFlags to configureFlags
Because it makes no sense to treat it differently.
2023-09-01 15:21:21 +00:00
Anderson Torres
8dd441e6cf guitarix: change wafHook to waf.hook 2023-08-26 13:12:09 +00:00
Artturin
f9fdf2d402 treewide: move NIX_CFLAGS_COMPILE to the env attrset
with structuredAttrs lists will be bash arrays which cannot be exported
which will be a issue with some patches and some wrappers like cc-wrapper

this makes it clearer that NIX_CFLAGS_COMPILE must be a string as lists
in env cause a eval failure
2023-02-22 21:23:04 +02:00
Artturin
6f6cc4a22d treewide: use toString on list NIX_CFLAGS_COMPILE
with structuredAttrs lists will be bash arrays which cannot be exported
which will be a issue with some patches and some wrappers like cc-wrapper
2023-02-22 21:23:04 +02:00
Veikka Valtteri Kallinen
ceb6f3d6a4
guitarix: 0.42.1 -> 0.44.1 2022-09-01 12:34:12 +03:00
Vladimír Čunát
6431e183cd
guitarix: fixup build
It probably broke by the latest glib update.
2022-04-28 18:48:33 +02:00
Konrad Borowski
467e36f5da guitarix: move from Python 2 to Python 3 2021-10-09 11:02:43 +02:00
Orivej Desh
16c04a5da4 guitarix: fix build with gcc11 2021-05-08 14:05:46 +00:00
R. RyanTM
677834a8f7 guitarix: 0.41.0 -> 0.42.1 2021-05-08 13:34:16 +00:00
Jan Tojnar
468cb5980b gnome: rename from gnome3
Since GNOME version is now 40, it no longer makes sense to use the old attribute name.
2021-05-08 09:47:42 +02:00
Robert Schütz
68169c85c4 guitarix: does not depend on libav 2021-02-02 17:26:36 +01:00
Jonathan Ringer
9bb3fccb5b treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nix
continuation of #109595

pkgconfig was aliased in 2018, however, it remained in
all-packages.nix due to its wide usage. This cleans
up the remaining references to pkgs.pkgsconfig and
moves the entry to aliases.nix.

python3Packages.pkgconfig remained unchanged because
it's the canonical name of the upstream package
on pypi.
2021-01-19 01:16:25 -08:00
Ben Siraphob
badf51221d treewide: stdenv.lib -> lib 2021-01-16 17:58:11 +07:00
Profpatsch
4a7f99d55d treewide: with stdenv.lib; in meta -> with lib;
Part of: https://github.com/NixOS/nixpkgs/issues/108938

meta = with stdenv.lib;

is a widely used pattern. We want to slowly remove
the `stdenv.lib` indirection and encourage people
to use `lib` directly. Thus let’s start with the meta
field.

This used a rewriting script to mostly automatically
replace all occurances of this pattern, and add the
`lib` argument to the package header if it doesn’t
exist yet.

The script in its current form is available at
https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2021-01-11 10:38:22 +01:00
Orivej Desh
7ef26ae64b guitarix: 0.40.0 -> 0.41.0
Unbundle zita resampler and convolver.
2020-07-17 15:36:32 +00:00
Bart Brouns
d838d2fdf9 guitarix: 0.39.0 -> 0.40.0 2020-06-11 17:08:20 +02:00
Orivej Desh
5de1e307f2 guitarix: fix build with lv2 1.18, enable faust plugins 2020-05-22 08:13:21 +00:00
Michael Reilly
84cf00f980
treewide: Per RFC45, remove all unquoted URLs 2020-04-10 17:54:53 +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
R. RyanTM
6d0b9e25c2 guitarix: 0.38.1 -> 0.39.0 2020-01-21 15:27:56 +00:00
volth
46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00
Bart Brouns
10165b72a4 guitarix: 0.37.3 ->0.38.1 (#59420) 2019-04-14 18:39:18 -04:00
Matthew Bauer
a79a8f29bc waf: use wafConfigureFlags for waf flags
This avoids the potential conflict between autoconf flags and the waf
flags. There is some overlap between the two but waf errors when it
doesn’t recognize the flag.
2019-04-09 23:44:37 -04:00
Matthew Bauer
f2a20b6e52 treewide: use wafHook
Replace "waf" phases with wafHook that manages everything
automatically. Should make things more modular.

Packages affected here are:

- a2jmidid
- ams-lv2
- ardour
- fomp
- guitarix
- ingen
- jalv
- mda-lv2
- non
- patchage
- hamster-time-tracker
- kupfer
- xiphos
- xfce4-dockbarx-plugin
- xfce4-namebar-plugin
- dropbox
- clasp
- aubio
- liliv
- lv2
- lvtk
- ntk
- raul
- sratom
- suil
- ganv
- ndn-cxx
- ns3
- serd
- sord
- termbox
- wxmupen64plus
- jackaudio
- pflask
- blockhash
- glmark2
- weighttp
2018-11-13 19:13:48 -06:00
Bart Brouns
8018df51f1 guitarix: 0.37.1 -> 0.37.2 (#45518) 2018-08-24 00:45:59 +02:00
R. RyanTM
6cf87da34e guitarix: 0.37.0 -> 0.37.1
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/guitarix/versions.

These checks were done:

- built on NixOS
- /nix/store/75d02i1k7n87j0qb3sd10kxf4v70sdsc-guitarix-0.37.1/bin/guitarix passed the binary check.
- /nix/store/75d02i1k7n87j0qb3sd10kxf4v70sdsc-guitarix-0.37.1/bin/.guitarix-wrapped passed the binary check.
- 2 of 2 passed binary check by having a zero exit code.
- 0 of 2 passed binary check by having the new version present in output.
- found 0.37.1 with grep in /nix/store/75d02i1k7n87j0qb3sd10kxf4v70sdsc-guitarix-0.37.1
- directory tree listing: https://gist.github.com/85b2e7786143f42e961c06cbde8de90b
- du listing: https://gist.github.com/6ef7508c8fd678e37bed9c76a4e00f34
2018-06-23 23:52:19 -07:00
Bart Brouns
00528006cf guitarix: 0.36.1 -> 0.37.0 2018-04-25 19:24:41 +02:00
Jan Tojnar
a31d98f312
tree-wide: autorename gnome packages to use dashes 2018-02-25 17:41:16 +01:00
Bart Brouns
cfb2e457a4 guitarix: 0.35.6 -> 0.36.1 2017-12-04 08:13:17 +01:00
Bart Brouns
1a2c7e563c guitarix: 0.35.3 -> 0.35.6 2017-08-28 00:45:39 +02:00
Bart Brouns
5861ba39a3 guitarix: 0.35.2 -> 0.35.3 (#24673) 2017-04-06 12:46:20 +01:00
Bart Brouns
00ffbf060c
guitarix: remove webkit, add compile flags
as recomended by the author: https://sourceforge.net/p/guitarix/mailman/message/33688855/
2017-03-06 09:17:10 -05:00
Joachim Fasting
fb3853cd71 Revert "guitarix: webkitgtk2 -> webkitgtk (#23390)"
This reverts commit 0e2a8cd01c.

Per https://github.com/NixOS/nixpkgs/pull/23390#issuecomment-283994426
guitarix only works with webkit1; replacing it with webkit2 then
is equivalent to removing it outright.
2017-03-03 17:30:32 +01:00
Bart Brouns
0e2a8cd01c guitarix: webkitgtk2 -> webkitgtk (#23390) 2017-03-03 16:58:10 +01:00
Frederik Rietdijk
70046019d9 guitarix: use python2 2017-02-10 09:35:10 +01:00
Bart Brouns
0d16b3fe59 guitarix: 0.35.1 -> 0.35.2 2016-11-01 02:20:46 +01:00
Kirill Boltaev
bccd75094f treewide: explicitly specify gtk and related package versions 2016-09-12 18:26:06 +03:00