summary refs log tree commit diff
Commit message (Collapse)AuthorAge
* git-ftp: init at 1.4.0Thorsten Weber2017-07-07
|
* Merge pull request #27051 from magnetophon/notmuchFrederik Rietdijk2017-07-03
|\ | | | | notmuch: 0.23.5 -> 0.24.2
| * notmuch: 0.23.5 -> 0.24.2Bart Brouns2017-07-02
| |
* | Merge pull request #27024 from zarelit/mailcatcherJörg Thalheim2017-07-03
|\ \ | | | | | | mailcatcher: init at 0.6.5
| * | mailcatcher: do not override phasesJörg Thalheim2017-07-03
| | |
| * | mailcatcher: init at 0.6.5David Costa2017-07-03
| | |
| * | maintainers: add zarelitDavid Costa2017-07-01
| | |
* | | Merge pull request #27040 from lheckemann/wlc-0.0.9Jörg Thalheim2017-07-03
|\ \ \ | | | | | | | | wlc: 0.0.8 -> 0.0.9
| * | | wlc: 0.0.8 -> 0.0.9Linus Heckemann2017-07-02
| | | |
* | | | kdevplatform: fix buildFrederik Rietdijk2017-07-03
| | | |
* | | | ktorrent: fix buildFrederik Rietdijk2017-07-03
| | | |
* | | | Merge pull request #27039 from jokogr/f/kdiff3-kcrashFrederik Rietdijk2017-07-03
|\ \ \ \ | | | | | | | | | | kdiff3: add dependency to kcrash
| * | | | kdiff3: add dependency to kcrashIoannis Koutras2017-07-02
| | | | |
* | | | | Merge pull request #27041 from jokogr/f/skrooge-drop-kdelibs4supportFrederik Rietdijk2017-07-03
|\ \ \ \ \ | | | | | | | | | | | | skrooge: drop kdelibs4support dependency
| * | | | | skrooge: drop kdelibs4support dependencyIoannis Koutras2017-07-02
| | |/ / / | |/| | | | | | | | | | | | | | | | | | Since Qt 5.7 and Skrooge v2.5.0, the latter can be built without KDELibs4Support.
* | | | | gnomeExtensions.caffeine: init at revision unstable-2017-06-21 (#26901)Emanuele Peruffo2017-07-03
| | | | | | | | | | | | | | | Caffeine extension for Gnome 3
* | | | | Revert "splix: enable JBIG" (#27054)Emmanuel Rosa2017-07-03
| | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 0878ca7ab4c9da80ba18357cfd29596dc0500973. My change to enable JBIG for splix did not work correctly. I was unable to get to the bottom of it because the build never completed. Given that it's also timing out in Hydra (see https://hydra.nixos.org/eval/1372226) I think it's best to simply back it out.
* | | | | Merge pull request #27058 from Nadrieril/fzf-shell-scriptsJörg Thalheim2017-07-03
|\ \ \ \ \ | | | | | | | | | | | | fzf: Include fzf shell scripts in output
| * | | | | fzf: Include fzf shell scripts in outputNadrieril2017-07-02
| | | | | |
* | | | | | x11idle: init at unstable-2017-07-01 (#27062)Samuel W. Flint2017-07-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add myself to the maintainers list * Define the derivation for x11idle
* | | | | | Merge #27076: mariadb: fix URL for source tarballVladimír Čunát2017-07-03
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | Not even all their mirrors serve our version, unfortunately.
| * | | | | | Mariadb: Fix URL for source tarball.Sebastian Hagen2017-07-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | mariadb.org appears to have changed their URL schemes, and the tarball URL used by this derivation no longer works, which makes this unbuildable from scratch. This change updates that URL to a mariadb.org location that will still serve this tarball. Hash is unchanged.
* | | | | | | nixos/xserver: Allow more than one keyboard layoutaszlig2017-07-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Regression introduced by 44c64fef16ed566786c8db276085b484c9d233f3. The services.xserver.layout option allows to specify more than one layout separated by comma, which the commit above didn't take into account. This is very similar to @lheckemann's pull request (#26984) but differs in the following ways: * Print out the full list available layouts (as suggested by @0xABAB in [1]). * Loop over $layout using the default IFS (and thus no need for escaping ${cfg.layout}), because the layouts won't contain white spaces. * Re-do the error message, which now uses multiple echos instead of a heredoc, so the line is wrapped according to the viewers terminal width. I've tested this with several good and bad layouts and also against the keymap NixOS VM subtests. [1]: https://github.com/NixOS/nixpkgs/pull/26984#discussion_r125146700 Signed-off-by: aszlig <aszlig@redmoonstudios.org> Fixes: #26961 Closes: #26984
* | | | | | | nixos/xserver: Document the layouts sed expressionaszlig2017-07-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This was brought up by @0xABAB in #26984 by the following comment: https://github.com/NixOS/nixpkgs/pull/26984#discussion_r125146405 Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | | | | | | Merge pull request #27074 from sh01/shpr_fixurls_kmod_debianJörg Thalheim2017-07-03
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | kmod-debian-aliases: Fix source tarball URL.
| * | | | | | | kmod-debian-aliases: Fix source tarball URL.es_github2017-07-03
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The original URL for this package was pointed at a location that wasn't longterm-stable, and has by now been removed by Debian. This commit fixes the URL to point at a debian snapshot entry, which should stick around for the long run. Hash is unchanged, so this is safe.
* | | | | | | Merge #27075: p7zip: Update CVE-2016-9296 patch URLVladimír Čunát2017-07-03
|\ \ \ \ \ \ \
| * | | | | | | p7zip: add commit ID to the patchVladimír Čunát2017-07-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We still do mirror the patch (I think), as `nix-build -Q -A p7zip.patches` downloaded it on my machine. I verified that only the diff headers differ; it's still better to have another working download and Fedora's URLs are less likely to disappear than Debian's. /cc #27075.
| * | | | | | | p7zip: Update CVE-2016-9296 patch URL.es_github2017-07-03
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The debian source for this patch file has gone away, rendering this derivation unbuildable from scratch. This change updates the URL to a src.fedoraproject.org location that is still serving a p7zip patch. This file is not the same bytewise, so I'm also updating the hash; I didn't manage to find a location still serving a file with the original hash, and my best guess is that this one is functionally equivalent.
* | | | | | | Merge pull request #27077 from sh01/shpr_fixurls_openslpJörg Thalheim2017-07-03
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Openslp: Fix patch references.
| * | | | | | | Openslp: Fix patch references.es_github2017-07-03
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The previous sources for these files have gone away, making this derivation unbuildable from scratch. We change the URLs to point at locations that will still serve those patches. This involves updating one of the hashes, also; I couldn't find an address that will serve the patch with the original hash, but I expect these only differ in irrelevant metadata.
* | | | | | | Merge pull request #27064 from LutzCle/masterJörg Thalheim2017-07-03
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | makemkv: 1.10.5 -> 1.10.6
| * | | | | | makemkv: 1.10.5 -> 1.10.6Clemens Lutz2017-07-02
|/ / / / / /
* | | | | | Merge pull request #27059 from fadenb/emby_3.2.22.0Joachim F2017-07-02
|\ \ \ \ \ \ | | | | | | | | | | | | | | emby: 3.2.20.0 -> 3.2.22.0
| * | | | | | emby: 3.2.20.0 -> 3.2.22.0Tristan Helmich2017-07-02
| | | | | | |
* | | | | | | offlineimap: 7.1.0 -> 7.1.1romildo2017-07-02
|/ / / / / /
* | | | | | Merge pull request #27037 from dywedir/xsvJoachim F2017-07-02
|\ \ \ \ \ \ | | | | | | | | | | | | | | xsv: 0.11.0 -> 0.12.1
| * | | | | | xsv: 0.11.0 -> 0.12.1dywedir2017-07-02
| | | | | | |
* | | | | | | Merge pull request #27047 from elitak/factorio-versionJoachim F2017-07-02
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | factorio: 0.15.16 -> 0.15.26
| * | | | | | | factorio: 0.15.16 -> 0.15.26Eric Litak2017-07-02
| | | | | | | |
* | | | | | | | ocamlPackages.inotify: init at 2.3Vincent Laporte2017-07-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This package contains bindings for Linux's filesystem monitoring interface, inotify. Homepage: https://github.com/whitequark/ocaml-inotify
* | | | | | | | ocamlPackages: make lwt-3.0.0 the defaultVincent Laporte2017-07-02
| |_|_|_|_|_|/ |/| | | | | |
* | | | | | | Merge pull request #26990 from jfrankenau/mpd-create-playlistDirJoachim F2017-07-02
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | mpd service: Create playlist directory
| * | | | | | | mpd service: Create playlist directoryJohannes Frankenau2017-07-01
| | | | | | | |
* | | | | | | | ocamlPackages.lambda-term: 1.10 -> 1.11Vincent Laporte2017-07-02
| | | | | | | |
* | | | | | | | ocamlPackages.lwt_react: init at 1.0.1Vincent Laporte2017-07-02
| | | | | | | |
* | | | | | | | ocamlPackages.lwt: 2.7.1 -> 3.0.0Vincent Laporte2017-07-02
| | | | | | | |
* | | | | | | | ocamlPackages.git-unix: init at 1.11.0Vincent Laporte2017-07-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Unix backend for the Git protocol(s)
* | | | | | | | ocamlPackages.git-http: init at 1.11.0Vincent Laporte2017-07-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Client implementation of the “Smart” HTTP Git protocol in pure OCaml.
* | | | | | | | ocamlPackages.lablgl: mark as broken on DarwinVincent Laporte2017-07-02
| |/ / / / / / |/| | | | | |