summary refs log tree commit diff
path: root/pkgs/tools/audio
Commit message (Collapse)AuthorAge
...
* | Fix SHA for pasystray.Michael Alan Dorman2015-05-25
|/ | | | | | | | | I presume there's something about how github creates the .zip files such that they can change SHA. Please note: this is a very outdated version of pasystray---I don't know if that's intentional, but perhaps a better strategy would be to update it wholesale.
* New package: mpDris2, MPRIS 2 support for mpdPeter Jones2015-05-20
|
* fix missing argumentArseniy Seroka2015-05-19
|
* More usage of gnome3.defaultIconThemeLuca Bruno2015-05-19
|
* beet: Remove unnecessary "LANG = null".aszlig2015-04-14
| | | | | | | | We're passing glibcLocales to the tests directly, so we don't pollute the builder's environment anyway, so no reason to override anything there. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* boots: Sort expression strings/attributes.aszlig2015-04-14
| | | | | | | | I know, I know, this is me being ultra-nazi about those things, but beets is about OCDing your music collection, so why not apply this to the Nix expressions as well? Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* beets: Update to new upstream version 1.3.11Peter Jones2015-04-14
| | | | | Adds glibcLocales as a dependency so that the unit tests with UTF-8 strings will work correctly.
* Set some meta.platformsEelco Dolstra2015-03-20
| | | | Also fix meta.platform -> meta.platforms in a few places.
* volumeicon: upgrade to 0.5.1Bob van der Linden2015-03-03
|
* beets: Update to new upstream version 1.3.10.aszlig2015-01-22
| | | | | | | | | | | | | | | | | | | | | | We can now finally drop the mediafile and test fix patches, because they were already coming from the upstream repository and are now included in the release. Also, this release brings two new plugins: * permissions: Fix permissions on music files as they are imported. * plexupdate: Notify a Plex server when the database changes. The echonest_tempo plugin has finally been removed and so we can drop it entirely. No plugin as of now tries to do interactive prompts on "beet config" anymore, so we can test *all* plugins and without providing dummy options. The full list of changes can be found here: https://github.com/sampsyo/beets/releases/tag/v1.3.10 Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* Merge pull request #4677 from cstrahan/pleasant-rubyCharles Strahan2015-01-21
|\ | | | | Pleasant ruby
| * ruby: fixup mpdcronCharles Strahan2015-01-21
| |
| * Merge branch 'master' of github.com:nixos/nixpkgs into pleasant-rubyCharles Strahan2015-01-20
| |\ | | | | | | | | | | | | | | | | | | Conflicts: pkgs/applications/version-management/git-and-tools/default.nix pkgs/applications/version-management/git-and-tools/hub/default.nix pkgs/tools/audio/mpdcron/default.nix
| * | ruby: WIPCharles Strahan2014-12-30
| | |
| * | Merge branch 'master' of github.com:nixos/nixpkgs into pleasant-rubyCharles Strahan2014-12-28
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: pkgs/applications/version-management/redmine/default.nix pkgs/development/interpreters/ruby/gem.nix pkgs/development/interpreters/ruby/generated.nix pkgs/development/interpreters/ruby/patches.nix pkgs/development/tools/vagrant/default.nix pkgs/servers/consul/default.nix
| * | | rename rubyLibs to rubyPackagesCharles Strahan2014-11-09
| | | |
* | | | dir2opus: initial package at 0.12.1Emery Hemingway2015-01-21
| |_|/ |/| |
* | | qastools: add version 0.18.1Jan Malakhovski2015-01-07
| | |
* | | beets: Add patch for fixing bucket tests.aszlig2015-01-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | See, that's why I hate the gregorian calendar and new years eve: People tend to celebrate things that are absolutely irrelevant, like this comment. The test however assumed that either beets or its test suite would never survive 2015, so this test should assure it won't survive in >= 2015 :-) Anyway, the patch is from upstream master, so we can drop it once 1.3.10 is released. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | | Switch users of 'pandoc' to the lean version.Peter Simons2015-01-02
| | |
* | | beets: Check dependencies on activated plugins.aszlig2014-12-30
| | | | | | | | | | | | | | | | | | | | | | | | Beets tries to load oll activated plugins on "beet config -e" (however only on the second run, thus the dummy), so we just pass all activated plugins into a generated config file and bail out on any errors. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | | beets: Check plugin definitions against package.aszlig2014-12-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | The reason for doing this is in order to not forget about possible dependencies in new upstream releases, so if upstream is introducing a new plugin where we're lacking dependencies, the build will fail on our side and we can check whether we'll need those. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | | beets: Use audiotools backend for replaygain.aszlig2014-12-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Using commands such as mp3gain and aacgain is only the default for backwards-compatible reasons. However, on Nix(OS), we would have to either patch those tools into beets or rely on an impurity, so let's depend on audiotools and also default to that backend. Of course, there is also a GStreamer backend, but it comes with a hell of additional dependencies (which not only cover audio files), which is why I decided against defaulting to GStreamer and package audiotools instead (in eecd932). Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | | beets: Allow to configure plugin dependencies.aszlig2014-12-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This also fleshes out/fixes the unit tests, which I've used for gathering the individual requirements. Along various Python dependencies we now also have a build-time dependency on bashInteractive and a runtime dependency on bashCompletion, which is needed for command line completion to work correctly. However, some tests for the shell completion fail at the moment, so I've disabled them for now. The patch for fixing mediafile codec info is a modified version of sampsyo/beets@903e88a, where I just dropped the second hunk modifying the changelog. It is already merged to master and thus expected to be in the next upstream version. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | | beets: Switch to using fetchFromGitHub.aszlig2014-12-30
| | | | | | | | | | | | | | | | | | | | | | | | The reason for doing this is because the package on PyPI is missing some files needed for running the test suite (for example: test/test_completion.sh). Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | | beets: Add myself to maintainers.aszlig2014-12-30
| | | | | | | | | | | | Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | | beets: Update to new upstream version 1.3.9.aszlig2014-12-30
| | | | | | | | | | | | Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | | beets: Move into its own package directory.aszlig2014-12-30
| |/ |/| | | | | | | | | | | | | | | | | | | | | The primary use of beets is not as a Python library and users usually would expect to install it into the env using "nix-env -i beets" rather than "nix-env -i pythonX.Y-beets". Having beets in its own package directory also allows for better customization, where we're going to implement attributes that can be used to turn on/off various features and plugins. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | wrap pasystray to provide XDG_DATA_DIRS so tray icon displays correctlyRichard Wallace2014-12-06
| |
* | initial liquidsoap package expressionEmery Hemingway2014-11-20
| |
* | Fixed many descriptionsPascal Wittmann2014-11-11
| |
* | Fixed typo: home -> homepageCillian de Róiste2014-11-07
| |
* | pasystray: add meta attributesAlexey Levan2014-11-07
| |
* | pasystray: new packageAlexey Levan2014-11-07
|/
* update gvoliconBenno Fünfstück2014-10-18
|
* fix mpdcronDomen Kožar2014-10-16
|
* transformed meta.maintainers of some packages into listsPascal Wittmann2014-09-13
|
* volumeicon: added homepageBob van der Linden2014-09-12
|
* volumeicon: made description not repeat the name of packageBob van der Linden2014-09-12
|
* added volumeiconBob van der Linden2014-09-11
|
* pnmixer: cleanupDomen Kožar2014-08-25
|
* pnmixer: Add description fieldPhilip Horger2014-08-25
|
* pnmixer: Add maintainer and fix namePhilip Horger2014-08-25
|
* Initial packaging for pnmixerPhilip Horger2014-08-25
|
* mpdcron: add expressionJason "Don" O'Conal2014-05-23
|
* Fix meta.maintainer -> meta.maintainersEelco Dolstra2014-04-23
|
* new expression: gvoliconBenno Fünfstück2014-03-22
|
* pa_applet: work around a build problemVladimír Čunát2013-12-10
| | | | | Also remove wrong homepage. CC @iElectric.
* acoustid-fingerprinter: Add new package, v0.6.aszlig2013-08-14
| | | | | | | | This is the commandline tool for interacting with the chromaprint library and it's needed for Picard version 1.2 (as it no longer has support for AmpliFIND/PUIDs). Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* pa-audio: adding hashRok Garbas2013-05-13
|