AndersonTorres
e9e5f5f84d
Change all alsaLib references to alsa-lib
2021-06-10 01:12:49 -03: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
19688e1df8
sonic-visualiser: 4.0.1 -> 4.2
2020-08-31 02:57:07 +00:00
Michael Reilly
84cf00f980
treewide: Per RFC45, remove all unquoted URLs
2020-04-10 17:54:53 +01:00
Orivej Desh
ef164d2ba9
vamp-plugin-sdk: rename from vamp.vampSDK
2020-03-26 22:34:47 +00: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
Jos van den Oever
528e27b33c
sonic-visualiser: 2.4.1 -> 4.0.1
...
The program is no longer broken.
2020-02-16 23:52:24 +01:00
Patrick Hilhorst
593e11fd94
treewide: fix redirected urls
...
According to https://repology.org/repository/nix_unstable/problems , we have a
lot of packages that have http links that redirect to https as their homepage.
This commit updates all these packages to use the https links as their
homepage.
The following script was used to make these updates:
```
curl https://repology.org/api/v1/repository/nix_unstable/problems \
| jq '.[] | .problem' -r \
| rg 'Homepage link "(.+)" is a permanent redirect to "(.+)" and should be updated' --replace 's@$1@$2@' \
| sort | uniq > script.sed
find -name '*.nix' | xargs -P4 -- sed -f script.sed -i
```
2020-01-22 11:26:22 +01: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
Silvan Mosberger
57bccb3cb8
treewide: http -> https sources ( #42676 )
...
* treewide: http -> https sources
This updates the source urls of all top-level packages from http to
https where possible.
* buildtorrent: fix url and tab -> spaces
2018-06-28 20:43:35 +02:00
Thomas Tuegel
c816bbc8a8
qt5: remove makeQtWrapper
2017-06-18 08:44:42 -05:00
Thomas Tuegel
210f688802
qt5: rename qmakeHook to qmake
2017-06-18 08:41:57 -05:00
Thomas Tuegel
5b73e2b8c8
sonic-visualiser: mark broken
2016-05-09 10:01:49 -05:00
Nikolay Amiantov
395a4b819b
sonic-visualiser: move to qmakeHook
2016-04-20 18:55:39 +03:00
Thomas Tuegel
d57e50d840
separate makeQtWrapper from qtbase setup-hook
2015-10-30 16:10:37 -05:00
Thomas Tuegel
51496d6c6d
sonic-visualiser: build with Qt 5.5
2015-09-27 15:09:46 -05:00
William A. Kennington III
7297255019
Convert all jack references to libjack2
2015-06-27 00:17:52 -07:00
Pascal Wittmann
bc4be19099
sonic-visualiser: fix build
2015-06-10 10:17:03 +02:00
William A. Kennington III
b07929b0a3
Use libpulseaudio instead of pulseaudio
2015-05-29 14:32:56 -07:00
Domen Kožar
b7f15c43da
fix evals /cc @ttuegel
2015-05-10 13:46:32 +02:00
Cillian de Róiste
e0f0e2c731
Update sonic-visualiser 2.3 -> 2.4.1 and fix attribute name
2014-11-30 10:57:40 +01:00
Bjørn Forsman
62d0a320b3
Revert "Remove obsolete jackaudio version 1."
...
This reverts commit bdb77826d9
.
Jack1 is not obsolete and neither jack1 nor jack2 is called 'jackaudio'.
Q: What's the difference between Jack1 and Jack2?
A: http://trac.jackaudio.org/wiki/Q_differenc_jack1_jack2
2014-07-31 12:52:29 +02:00
Peter Simons
bdb77826d9
Remove obsolete jackaudio version 1.
2014-07-28 20:32:52 +02:00
Bjørn Forsman
f6f2f38a6e
jack: change package and attr names to 'jack1' and 'jack2'
...
Currently, we have a 'jack' package with attrname 'jack1d' and a
'jackdbus' package with attrname 'jackaudio'. Make it consistent 'jack1'
and 'jack2' in both package name and attrname.
This aligns the naming with what can be found on the JACK homepage.
Q: what's the difference between jack1 and jack2?
A: http://trac.jackaudio.org/wiki/Q_differenc_jack1_jack2
2014-07-23 20:22:14 +02:00
Cillian de Róiste
845f30aa6a
sonic-visualiser: upgrade from 1.9 to 2.3
...
remove obsolete patch, add new inputs
2014-02-19 20:14:15 +01:00
Vladimír Čunát
fca031e04b
sonic_visualizer: fix build on newer gcc via a Gentoo patch
2013-08-29 14:42:14 +02:00
Cillian de Róiste
1afe86a7b7
Tidy up
2012-06-24 16:54:51 +02:00
Cillian de Róiste
c6457c322b
Upgrading sonic-visualiser to 1.9 and adding pkgconfig so that it finds rasqal.h successfully
2012-06-24 16:51:42 +02:00
Eelco Dolstra
c556a6ea46
* "ensureDir" -> "mkdir -p". "ensureDir" is a rather pointless
...
function, so obsolete it.
svn path=/nixpkgs/branches/stdenv-updates/; revision=31644
2012-01-18 20:16:00 +00:00
Yury G. Kudryashov
ceb301c31b
Remove unused sonic-visualizer/ subdir, rename.
...
Also move "qt=qt4" to default.nix
svn path=/nixpkgs/trunk/; revision=28474
2011-08-10 22:39:53 +00:00
Cillian de Roiste
c5f0b7415f
Wrapping sonic-visualiser so that it finds libX11.so
...
svn path=/nixpkgs/trunk/; revision=27167
2011-05-05 22:01:20 +00:00
Cillian de Roiste
fb9de42ad1
Updating Sonic Visualiser, it isn't getting wrapped correctly, but otherwise it compiles and works
...
svn path=/nixpkgs/trunk/; revision=27154
2011-05-04 23:54:03 +00:00