about summary refs log tree commit diff
Commit message (Collapse)AuthorAge
...
| * | | | | | | | | | nixos/ipfs: actually use upstream systemd unitsMatthew Bauer2020-06-12
| | | | | | | | | | |
| * | | | | | | | | | nixos/ipfs: add startWhenNeeded optionMatthew Bauer2020-06-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This makes it possible to only start IPFS when needed. So a user’s IPFS daemon only starts when they actually use it. A few important warnings though: - This probably shouldn’t be mixed with services.ipfs.autoMount since you want /ipfs and /ipns aren’t activated like this - ipfs.socket assumes that you are using ports 5001 and 8080 for the API and gateway respectively. We could do some parsing to figure out what is in apiAddress and gatewayAddress, but that’s kind of difficult given the nonstandard address format. - Apparently? this doesn’t work with the --api commands used in the tests. Of course you can always start automatically with startWhenNeeded = false, or just running ‘systemctl start ipfs.service’. Tested with the following test (modified from tests/ipfs.nix): import ./make-test-python.nix ({ pkgs, ...} : { name = "ipfs"; nodes.machine = { ... }: { services.ipfs = { enable = true; startWhenNeeded = true; }; }; testScript = '' start_all() machine.wait_until_succeeds("ipfs id") ipfs_hash = machine.succeed("echo fnord | ipfs add | awk '{ print $2 }'") machine.succeed(f"ipfs cat /ipfs/{ipfs_hash.strip()} | grep fnord") ''; }) Fixes #90145 Update nixos/modules/services/network-filesystems/ipfs.nix Co-authored-by: Florian Klink <flokli@flokli.de>
| * | | | | | | | | | nixos/ipfs: consolidate services into one ipfs.serviceMatthew Bauer2020-06-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously we had three services for different config flavors. This is confusing because only one instance of IPFS can run on a host / port combination at once. So move all into ipfs.service, which contains the configuration specified in services.ipfs. Also remove the env wrapper and just use systemd env configuration.
| * | | | | | | | | | nixos/ipfs: remove unused auto migrate featureMatthew Bauer2020-06-11
| | | | | | | | | | |
| * | | | | | | | | | ipfs: copy systemd support files to outputMatthew Bauer2020-06-11
| | | | | | | | | | |
* | | | | | | | | | | Merge pull request #90204 from Ericson2314/fix-perl-pkg-configJohn Ericson2020-06-12
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | perlPackages.ExtUtilsPkgConfig: Fix build
| * | | | | | | | | | | perlPackages.ExtUtilsPkgConfig: Fix buildJohn Ericson2020-06-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #90084
* | | | | | | | | | | | Merge pull request #89877 from r-ryantm/auto-update/watchexecVladyslav M2020-06-12
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | watchexec: 1.13.0 -> 1.13.1
| * | | | | | | | | | | | watchexec: 1.13.0 -> 1.13.1R. RyanTM2020-06-09
| | | | | | | | | | | | |
* | | | | | | | | | | | | Merge pull request #90106 from r-ryantm/auto-update/piperRyan Mulligan2020-06-12
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | piper: 0.4 -> 0.5
| * | | | | | | | | | | | | piper: 0.4 -> 0.5R. RyanTM2020-06-11
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Merge pull request #90062 from steve-chavez/unbreak-hasql-notiPeter Simons2020-06-12
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | haskellPackages.hasql-notifications: unbreak
| * | | | | | | | | | | | | | haskellPackages.hasql-notifications: unbreaksteve-chavez2020-06-10
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | python3Packages.duecredit: init at 0.8.0Ben Darwin2020-06-12
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | python3Packages.citeproc-py: init at 0.5.1Ben Darwin2020-06-12
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | python3Packages.rnc2rng: init at 2.6.4Ben Darwin2020-06-12
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | piccata 1.0.1 -> 2.0.0Sirio Balmelli2020-06-12
| |_|_|_|_|_|_|/ / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Sirio Balmelli <sirio@b-ad.ch>
* | | | | | | | | | | | | | Merge pull request #89112 from eadwu/musl/libc-archMatthew Bauer2020-06-12
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | musl: include libc.musl-$arch
| * | | | | | | | | | | | | | musl: include libc.musl-$archEdmund Wu2020-06-12
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Merge pull request #90186 from 7c6f434c/fix-mplayerMichael Raskin2020-06-12
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | mplayer: fix build by forcing -lfreetype
| * | | | | | | | | | | | | | | mplayer: fix build by forcing -lfreetypeMichael Raskin2020-06-12
| | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | firefox-beta-bin: 77.0b7 -> 78.0b2 (security)ajs1242020-06-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PR #89438.
* | | | | | | | | | | | | | | | firefox-esr-68: 68.8.0esr -> 68.9.0esr (security)ajs1242020-06-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PR #89438.
* | | | | | | | | | | | | | | | firefox-bin: 76.0 -> 77.0.1 (security)ajs1242020-06-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PR #89438.
* | | | | | | | | | | | | | | | Merge pull request #90189 from volth/cental.maven.orgJörg Thalheim2020-06-12
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | treewide: central.maven.org -> repo1.maven.org
| * | | | | | | | | | | | | | | | treewide: central.maven.org -> repo1.maven.orgvolth2020-06-12
| | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | python3Packages.iterm2: init at 1.14Jeremy Schlatter2020-06-12
| | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | maintainers: add jeremyschlatterJeremy Schlatter2020-06-12
| | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | treewide: use ffmpeg_3 explicitly if not wanted otherwiseDoron Behar2020-06-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | After making `ffmpeg` point to the latest `ffmpeg_4`, all packages that used `ffmpeg` without requiring a specific version now use ffmpeg_3 explicitly so they shouldn't change.
* | | | | | | | | | | | | | | | | ffmpeg: default to ffmpeg_4Doron Behar2020-06-12
| | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | Merge pull request #87178 from hax404/teeworlds-module-testJörg Thalheim2020-06-12
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|/ / / / / / / / / / |/| | | | | | | | | | | | | | | | nixos/{modules,tests}/teeworlds: init
| * | | | | | | | | | | | | | | | nixos/{modules,tests}/teeworlds: initGeorg Haas2020-06-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | add module and test
* | | | | | | | | | | | | | | | | pythonPackages.bravia-tv: 1.0.1 -> 1.0.5Cole Mickens2020-06-12
| | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | Merge pull request #90192 from kraem/kraem/pkgs/facetimehd/remove-nixpkgs-patchGraham Christensen2020-06-12
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|_|/ / / / / / / / |/| | | | | | | | | | | | | | | | facetimehd: remove patch in nixpkgs, patched upstream
| * | | | | | | | | | | | | | | | facetimehd: remove patch in nixpkgs, patched upstreamkraem2020-06-12
| | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | Merge pull request #89931 from OPNA2608/update-palemoon-28.10.0Anderson Torres2020-06-12
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | palemoon: 28.9.3 -> 28.10.0
| * | | | | | | | | | | | | | | | palemoon: 28.9.3 -> 28.10.0Christoph Neidahl2020-06-07
| | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | Merge pull request #89408 from jpotier/add-libuclJan Tojnar2020-06-12
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | | | libucl: init at 0.8.1EEva (JPotier)2020-06-07
| | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | oh-my-zsh: 2020-06-08 -> 2020-06-10Tim Steinbach2020-06-12
| | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | linux_latest-libre: 17527 -> 17537Tim Steinbach2020-06-12
| | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | Merge pull request #89662 from aanderse/ssmtpMaximilian Bosch2020-06-12
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | nixos/ssmtp: add settings option
| * | | | | | | | | | | | | | | | | | nixos/ssmtp: drop authPass option in favor of authPassFile, or ↵Aaron Andersen2020-06-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | services.ssmtp.settings.AuthPass if absolutely required
| * | | | | | | | | | | | | | | | | | nixos/ssmtp: add settings optionAaron Andersen2020-06-07
| | | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | Merge pull request #90048 from r-ryantm/auto-update/mkvtoolnixMichele Guerini Rocco2020-06-12
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | mkvtoolnix: 46.0.0 -> 47.0.0
| * | | | | | | | | | | | | | | | | | | mkvtoolnix: 46.0.0 -> 47.0.0R. RyanTM2020-06-10
| | | | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | | | Merge pull request #89159 from datafoo/fix-issue-89158Michele Guerini Rocco2020-06-12
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|/ / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | nixos/networking: check interface state files exist before acting on them
| * | | | | | | | | | | | | | | | | | | nixos/networking: check interface state files exist before acting on themdatafoo2020-05-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix #89158
* | | | | | | | | | | | | | | | | | | | Merge pull request #90181 from martinbaillie/terraform-language-serverMario Rodas2020-06-12
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | terraform-ls: init at 0.3.2
| * | | | | | | | | | | | | | | | | | | | terraform-ls: init at 0.3.2Martin Baillie2020-06-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Martin Baillie <martin@baillie.email>