about summary refs log tree commit diff
Commit message (Collapse)AuthorAge
* baresip: 0.4.11 -> 0.4.12Michael Raskin2014-12-31
|
* libgphoto2: 2.5.5.1 -> 2.5.6Michael Raskin2014-12-31
|
* ocaml-camlpdf: update from 1.7.2 to 2.1.1Vincent Laporte2014-12-31
|
* alt-ergo: update from 0.95.2 to 0.99.1Vincent Laporte2014-12-31
|
* Fix gltron. Sinterklaas present for iElectric.Lluís Batlle i Rossell2014-12-31
| | | | (cherry picked from commit 013705113bb95f5e43b779c94c231f4f0f3b89fc)
* TweakEelco Dolstra2014-12-31
|
* nixos/doc release notes: mention intel GPU driverVladimír Čunát2014-12-31
| | | | (cherry picked from commit 3865ab9e6901a529fbb480599c94f4a04d93c71d)
* nixos/release-notes: Fix typo in VirtualBox notes.aszlig2014-12-30
| | | | Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* Merge branch 'better-beets'.aszlig2014-12-30
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Makes beets actually usable (and configurable) on Nix(OS), if you want to use more plugins rather than just plain lookup of tracks based on (fuzzy) string matching. This also changes the derivation name from "python2.7-beets" to just "beets". * Commit summary: beets: Check dependencies on activated plugins. beets: Check plugin definitions against package. beets: Use audiotools backend for replaygain. beets: Allow to configure plugin dependencies. beets: Switch to using fetchFromGitHub. python: Add new package audiotools. python: Add new package discogs_client. python: Add pyacoustid and dependencies. python/mutagen: Update to upstream version 1.27. mp3gain: Fix output path bin directory. beets: Add myself to maintainers. beets: Update to new upstream version 1.3.9. beets: Move into its own package directory.
| * 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>
| * python: Add new package audiotools.aszlig2014-12-30
| | | | | | | | | | | | This is needed for the replaygain plugin in beets. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
| * python: Add new package discogs_client.aszlig2014-12-30
| | | | | | | | | | | | Needed in order to fetch Discogs album information in beets. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
| * python: Add pyacoustid and dependencies.aszlig2014-12-30
| | | | | | | | | | | | We're going to need this for fingerprinting support in beets. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
| * python/mutagen: Update to upstream version 1.27.aszlig2014-12-30
| | | | | | | | | | | | | | Also now comes with a few more build dependencies in order to run tests, which for this version now succeed. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
| * mp3gain: Fix output path bin directory.aszlig2014-12-30
| | | | | | | | 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>
* | Merge pull request #5510 from k0ral/fast-exportArseniy Seroka2014-12-31
|\ \ | | | | | | fast-export: update to last revision from upstream
| * | fast-export: update to last revision from upstreamkoral2014-12-30
| | |
* | | Document small channelsEelco Dolstra2014-12-30
| | |
* | | Dwarf Fortress: Update to 0.40.23.Moritz Ulrich2014-12-30
| | |
* | | Release notes tweakEelco Dolstra2014-12-30
| | |
* | | Sort stuffEelco Dolstra2014-12-30
| | |
* | | Disambiguate util-linux package namesEelco Dolstra2014-12-30
| | |
* | | Create AMIs in the lb-nixos accountEelco Dolstra2014-12-30
| | |
* | | Drop reference to obsolete ControlGroupAttribute optionEelco Dolstra2014-12-30
| | |
* | | Release notesEelco Dolstra2014-12-30
| | |
* | | Release dateEelco Dolstra2014-12-30
| | |
* | | openjdk : Patch to extend valid currency change dates to 20 years.Karn Kallio2014-12-30
| | |
* | | Merge pull request #5507 from DamienCassou/systemd-user-timersEelco Dolstra2014-12-30
|\ \ \ | | | | | | | | Add systemd.user.timers
| * | | Add systemd.user.timersDamien Cassou2014-12-30
| | | |
* | | | xidel: new packageBjørn Forsman2014-12-30
| | | | | | | | | | | | | | | | | | | | | | | | Command line tool to download and extract data from html/xml page. http://videlibri.sourceforge.net/xidel.html
* | | | haskellPackages.netwire: Update to 5.0.1Oliver Charles2014-12-30
| | | |
* | | | telepathy-misson-control: minor update, disable upowerVladimír Čunát2014-12-30
| | | | | | | | | | | | | | | | | | | | Disabling upower is probably just a temporary work around the incompatibility with 0.99.*
* | | | Merge pull request #5501 from k0ral/webkitgtkPeter Simons2014-12-30
|\ \ \ \ | | | | | | | | | | webkitgtk: 2.6.2 -> 2.6.4
| * | | | webkitgtk: added optional geoclue2 dependency.koral2014-12-29
| | | | |
| * | | | webkitgtk: 2.6.2 -> 2.6.4koral2014-12-29
| | |/ / | |/| |
* | | | Revert "merge #5505: use /run/current-system/sw/bin/*"Vladimír Čunát2014-12-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | I didn't realize it causes a nontrivial rebuild (through systemd). I'll re-push to staging. This reverts commit 8cf4ef7ab747b3e3d0b1319de538257281355b33.
* | | | merge #5505: use /run/current-system/sw/bin/*Tobias Geerinckx-Rice2014-12-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A working /sbin/shutdown (usually provided by systemd) is required by "rtcwake -m off". Creating a circular dependency on systemd for this just isn't worth the trouble, so take the straightforward way out. One could easily make the argument that rtcwake wants to shut down the *currently running system*, and that the correct API for that *is* in fact /run/current-system. And it makes a very tempting sort of sense. @vcunat moved to postPatch and added #FIXME.
* | | | cyrus_sasl: Enable kerberosWilliam A. Kennington III2014-12-30
| | | |
* | | | krb5: 1.12.2 -> 1.13William A. Kennington III2014-12-30
| | | |
* | | | heimdal: Update buildWilliam A. Kennington III2014-12-30
| | | |
* | | | kerberos: Use default kerberos instead of krb5William A. Kennington III2014-12-30
| | | |
* | | | pam_krb5: Keep kerberos instead of krb5William A. Kennington III2014-12-29
| | | |
* | | | pam_krb5: 2.3.11 -> 2.4.9William A. Kennington III2014-12-29
| | | |