summary refs log tree commit diff
Commit message (Collapse)AuthorAge
* gitfs: do not pass in buildPythonApplicationFrederik Rietdijk2016-09-26
|
* getmail: pass in pythonPackagesFrederik Rietdijk2016-09-26
|
* cli53: do not pass in buildPythonApplicationFrederik Rietdijk2016-09-26
|
* beets: pass in pythonPackagesFrederik Rietdijk2016-09-26
|
* apt-offline: pass in pythonPackagesFrederik Rietdijk2016-09-26
|
* Remove top-level python packagesFrederik Rietdijk2016-09-26
|
* zbar: do not use top-level python packagesFrederik Rietdijk2016-09-26
|
* zim: do not use top-level python packagesFrederik Rietdijk2016-09-26
|
* uzbl: do not use top-level python packagesFrederik Rietdijk2016-09-26
|
* terminator: do not use top-level python packagesFrederik Rietdijk2016-09-26
| | | | and refactor to use buildPythonApplication. cc @bjornfor
* pythonSexy -> pythonPackages.libsexyFrederik Rietdijk2016-09-26
|
* solfege: do not use top-level python packagesFrederik Rietdijk2016-09-26
|
* spice-gtk: do not use top-level python packagesFrederik Rietdijk2016-09-26
|
* libvirt-glib: do not use top-level python packagesFrederik Rietdijk2016-09-26
|
* libindicate: do not use top-level python packagesFrederik Rietdijk2016-09-26
|
* liferea: do not use top-level python packagesFrederik Rietdijk2016-09-26
|
* mypaint: do not use top-level python packagesFrederik Rietdijk2016-09-26
|
* linuxband: do not use top-level python packagesFrederik Rietdijk2016-09-26
|
* Merge pull request #18933 from tohl/masterMichael Raskin2016-09-26
|\ | | | | sbcl: 1.3.8 -> 1.3.9
| * sbcl: 1.3.8 -> 1.3.9Tomas Hlavaty2016-09-24
| |
* | Merge pull request #18966 from grahamc/file-rollerDamien Cassou2016-09-26
|\ \ | | | | | | file-roller: 3.20.2 -> 3.20.3
| * | file-roller: 3.20.2 -> 3.20.3Graham Christensen2016-09-25
| | |
* | | hackage-packages.nix: automatic Haskell package set updatePeter Simons2016-09-26
| | | | | | | | | | | | | | | This update was generated by hackage2nix v2.0.2-5-gabba389 from Hackage revision https://github.com/commercialhaskell/all-cabal-hashes/commit/f3f5c19aa1b602fbe2af37c6fc768f6c3d790c70.
* | | hindent: don't try to byte compile elisp filesPeter Simons2016-09-26
| | | | | | | | | | | | | | | We don't have an up-to-date version of haskell-mode in Nix, which is a dependency of that build.
* | | structured-haskell-mode: apply patches to fix the buildPeter Simons2016-09-26
| | |
* | | structured-haskell-mode: cosmeticPeter Simons2016-09-26
| | |
* | | structured-haskell-mode: use output from "git describe" to identify the versionPeter Simons2016-09-26
| | |
* | | Merge pull request #18951 from Mic92/lcmsEelco Dolstra2016-09-26
|\ \ \ | | | | | | | | lcms: fix cve-2013-4276
| * | | lcms: fix cve-2013-4276Jörg Thalheim2016-09-25
| | | |
* | | | Merge pull request #18959 from grahamc/qemuEelco Dolstra2016-09-26
|\ \ \ \ | | | | | | | | | | qemu: 2.6.1 -> 2.7.0 for CVEs
| * | | | qemu: 2.6.1 -> 2.7.0Graham Christensen2016-09-25
| | | | |
* | | | | Merge pull request #18953 from joachifm/remove-connman-uidEelco Dolstra2016-09-26
|\ \ \ \ \ | | | | | | | | | | | | nixos/ids: remove unused connman uid
| * | | | | nixos/ids: remove unused connman uidJoachim Fasting2016-09-25
| | | | | | | | | | | | | | | | | | | | | | | | The static connman uid is not referenced anywhere in NixOS.
* | | | | | Merge pull request #18949 from grahamc/openjpegEelco Dolstra2016-09-26
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | openjpeg: 2.1.0 -> 2.1.1 for critical bugfixes and no ABI break
| * | | | | openjpeg: 2.1.0 -> 2.1.1 for critical bugfixes and no ABI breakGraham Christensen2016-09-25
| | | | | |
* | | | | | nixos/activation: Rename "tmpfs" to "specialfs"aszlig2016-09-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Using "tmpfs" as a script part for system.activationScripts is a bit misleading since 6efcfe03ae4ef426b77a6827243433b5296613a4. We no longer solely mount tmpfs within this script, so using "specialfs" fits more nicely in terms of naming. Tested against the "simple" NixOS installer test. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | | | | | nixos/activation: Avoid remounting non-existing FSaszlig2016-09-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Regression introduced by 79d4636d506094eae3c5c7575a0bef817cba9bda. The mentioned commit moves /run/keys from stage 2 to boot.specialFileSystems, the latter being remounted during system activation. Unfortunately, the specialMount function in the activation script does this unconditionally and thus will fail if it can't be remounted because the mount point simply doesn't exist. We now check the mount point for existance and only remount if it exists but mkdir + mount it if it doesn't. Tested against the "simple" NixOS installer test. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* | | | | | structured-haskell-mode: bump to latest git versionPeter Simons2016-09-26
| | | | | | | | | | | | | | | | | | | | | | | | Hopefully, this will achieve support for Emacs 25.x.
* | | | | | svtplay-dl: 1.4 -> 1.5Robert Helgesson2016-09-26
| | | | | |
* | | | | | perl-Pod-Weaver: 4.013 -> 4.014Robert Helgesson2016-09-26
| | | | | |
* | | | | | perl-Net-Domain-TLD: 1.74 -> 1.75Robert Helgesson2016-09-26
| | | | | |
* | | | | | baresip: enable G.711 codecEmery Hemingway2016-09-26
| | | | | |
* | | | | | libgpod: do not use top-level python packagesFrederik Rietdijk2016-09-25
| | | | | |
* | | | | | libappindicator: do not use top-level python packagesFrederik Rietdijk2016-09-25
| | | | | |
* | | | | | key-mon: do not use top-level python packagesFrederik Rietdijk2016-09-25
| | | | | |
* | | | | | keybinder3: remove unused parameterFrederik Rietdijk2016-09-25
| | | | | |
* | | | | | keybinder: do not use top-level python packagesFrederik Rietdijk2016-09-25
| | | | | |
* | | | | | keepnote: do not use top-level python packagesFrederik Rietdijk2016-09-25
| | | | | |
* | | | | | jbrout: do not use top-level python packagesFrederik Rietdijk2016-09-25
| | | | | |
* | | | | | don't call remove ibus-libinyinFrederik Rietdijk2016-09-25
| | | | | | | | | | | | | | | | | | | | | | | | since it's already called from within the ibus-engines set