Commit Graph
139659 Commits
Author SHA1 Message Date
Jan Tojnar ec80c5e4c4 nixos/flatpak: allow specifying extra portals 2018-05-15 13:31:13 +02:00
Jan Tojnar 843bc0f73a flatpak-builder: init add 0.10.10 2018-05-15 13:28:30 +02:00
Jan Tojnar 2fc8b83282 gnome3.gnome-software: build with flatpak support 2018-05-15 13:28:30 +02:00
Jan Tojnar 17dd7bcd89 nixos/systemd-lib: fix conflict with dbus.service.d directory
When a package contains a directory in one of the systemd directories
(like flatpak does), it is symlinked into the *-units derivation.
Then later, the derivation will try to create the directory, which
will fail:

mkdir: cannot create directory '/nix/store/…-user-units/dbus.service.d': File exists
builder for '/nix/store/…-user-units.drv' failed with exit code 1

Closes: #33233
2018-05-15 13:28:30 +02:00
Jan Tojnar e0a42d991c nixos/flatpak: init 2018-05-15 13:28:29 +02:00
Jan Tojnar 556c40c0e2 xdg-desktop-portal-gtk: init at 0.10 2018-05-11 06:06:41 +02:00
Jan Tojnar fe54e14cef xdg-desktop-portal: init at 0.11 2018-05-11 06:06:40 +02:00
Jan Tojnar 215dcb7285 flatpak: init at 0.11.7 2018-05-11 06:06:40 +02:00
Peter Simons 6db7f92cc2 all-cabal-hashes: update to latest version 2018-05-08 17:48:12 +02:00
Peter Simons c5338e5acb haskell-gi: remember the URL to the PR that explains why the override is necessary 2018-05-08 17:47:12 +02:00
Peter Simons 26e961c1fb hackage-packages.nix: automatic Haskell package set update
This update was generated by hackage2nix v2.9.2-11-ga2d666d from Hackage revision
https://github.com/commercialhaskell/all-cabal-hashes/commit/7b40a148a0a32f0150b0a72f3f916af9723601b7.
2018-05-08 17:46:45 +02:00
Peter Simons 277ca33bee LTS Haskell 11.8 2018-05-08 17:46:24 +02:00
John EricsonandGitHub f22bfb38c6 Merge pull request #40161 from ElvishJerricco/ghc-build-packages-integer-simple
Use build packages GHC for haskell.packages.integer-simple
2018-05-08 10:33:51 -04:00
Tim Steinbach 3510b983c4 linux: 4.17-rc3 -> 4.17-rc4 2018-05-08 10:02:05 -04:00
Nikolay Amiantov a08645e9be nginx module: add upstream extraConfig 2018-05-08 16:32:11 +03:00
Nikolay Amiantov 61a87491dc pacparser: init at 1.3.7 2018-05-08 16:27:55 +03:00
Nikolay Amiantov d541169e1a wesnoth: unite with wesnoth-dev
There's no Wesnoth development version now.
2018-05-08 16:06:30 +03:00
Joachim SchieleandNikolay Amiantov 851d5d72a3 dovecot2: added ssl_dh using security.dhparams
The 18.03 channel includes dovecot 2.3, which requires ssl_dh to be set.
-> fixes https://github.com/nixcloud/nixcloud-webservices/issues/21
2018-05-08 15:51:39 +03:00
Ben Barclayandzimbatm 9ef306bb4d bazel: 0.11.1 -> 0.12.0 (#39585) 2018-05-08 13:46:24 +01:00
Peter HoegandGitHub db920b5a0a Merge pull request #39921 from jD91mZM2/nodns
NetworkManager nixos: add noDns option
2018-05-08 19:59:35 +08:00
jD91mZM2 6c4c36fcbc NetworkManager: add noDns option 2018-05-08 13:42:39 +02:00
Jörg ThalheimandGitHub 9e968fb553 Merge pull request #40170 from tazjin/kontemplate-v1.5.0
kontemplate: 1.4.0 -> 1.5.0
2018-05-08 11:26:12 +01:00
Vincent Ambo a604fc6fcb kontemplate: 1.4.0 -> 1.5.0
Moves to release version 1.5.0 (released 2018-05-08).
2018-05-08 12:09:12 +02:00
Sarah Brofeldt 199e7f18ed bluemix: Fix eval of maintainers 2018-05-08 11:53:33 +02:00
aszlig dace481377 kdepim-addons: Add package expression
This is needed in order to add location information to contacts in
KAddressbook.

Packaging was quite straightforward except that it needed
akonadi-import-wizard, which I have packaged in the previous commit.

I'm committing this directly to master without a pull request, because
nothing depends on it (for obvious reasons) and packaging was trivial
enough so that if things are not as they supposed to be it can still be
changed very easily.

Tested this using the following VM configuration, because I don't run a
Plasma desktop:

(import <nixpkgs/nixos> {
  configuration = { pkgs, ... }: {
    environment.systemPackages = with import <nixpkgs> {}; [
      kdeApplications.kaddressbook kdeApplications.kdepim-addons
    ];
    users.users.test.isNormalUser = true;
    virtualisation.diskSize = 4096;
    virtualisation.memorySize = 2048;

    services.xserver = {
      enable = true;
      inherit ((import <nixpkgs/nixos> {}).config.services.xserver) layout;
      displayManager.sddm.enable = true;
      displayManager.sddm.autoLogin.enable = true;
      displayManager.sddm.autoLogin.user = "test";
      desktopManager.default = "plasma5";
      desktopManager.plasma5.enable = true;
    };
  };
}).vm

The test I've done is using KAddressbook and check whether the location
tab is working and it does now.

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @ttuegel, @vandenoever
2018-05-08 11:48:16 +02:00
aszlig eb774f3047 akonadi-import-wizard: Add package expression
This is required for kdepim-addons and packaging this is pretty much
straightforward with no hurdles.

I tried to keep the coding style close to other packages in
kdeApplications so that it stays consistent.

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @ttuegel, @vandenoever
2018-05-08 11:48:12 +02:00
Jörg ThalheimandGitHub 4dc33d06b9 Merge pull request #40056 from r-ryantm/auto-update/xmrig
xmrig: 2.5.3 -> 2.6.1
2018-05-08 10:08:04 +01:00
Vincent AmboandJörg Thalheim a8768c610e bluemix-cli: init at 0.6.6 (#40147)
Adds the (non-free, binary) IBM Bluemix CLI which is required to
administrate IBM Bluemix services.
2018-05-08 09:22:25 +01:00
Jörg Thalheim c2b4cfbe08 xmrig: restrict to x86 2018-05-08 09:12:13 +01:00
Joel BurgetandJörg Thalheim 5d66a6bbdb 1password: init at version 0.4 (#40158) 2018-05-08 08:23:07 +01:00
Jörg ThalheimandGitHub b1c467ad92 Merge pull request #40159 from Ekleog/cargo-fuzz-0.5.3
cargo-fuzz: init at 0.5.3
2018-05-08 07:43:40 +01:00
Robert SchützandGitHub 6e6005c2af Merge pull request #38794 from timokau/brial-init
brial: init at 1.2.3
2018-05-08 08:08:15 +02:00
Will Fancher a33756a866 Use build packages GHC for haskell.packages.integer-simple 2018-05-07 23:57:01 -04:00
Jan TojnarandGitHub 85a0cd915b Merge pull request #40155 from jtojnar/gnome-3.28.2
GNOME Updates
2018-05-08 04:42:29 +02:00
Léo Gaspard 376c55fcea cargo-fuzz: init at 0.5.3 2018-05-08 03:36:41 +02:00
Jan Tojnar fd0d1f35a5 gvfs: 1.36.1 → 1.36.2 2018-05-08 03:31:57 +02:00
Jan Tojnar c477acec9e gnome3.mutter: 3.28.0 → 3.28.1 2018-05-08 03:31:57 +02:00
Jan Tojnar df80580521 gnome3.gnome-shell: 3.28.0 → 3.28.1 2018-05-08 03:31:56 +02:00
Jan Tojnar 2b1db53296 gnome3.gnome-shell-extensions: 3.28.0 → 3.28.1 2018-05-08 02:47:43 +02:00
Jan Tojnar fef1129d4e gnome3.gnome-keyring: 3.28.0.2 → 3.28.2 2018-05-08 02:37:35 +02:00
Jan Tojnar 6465aaac06 gnome3.gnome-contacts: 3.28.1 → 3.28.2 2018-05-08 02:37:17 +02:00
Jan Tojnar 6353a952ce gnome3.gjs: 1.52.2 → 1.52.3 2018-05-08 02:36:57 +02:00
Jan Tojnar 44e49b9e45 evolution-data-server: 3.28.1 → 3.28.2 2018-05-08 02:36:37 +02:00
Jan Tojnar ffda669690 gnome3.eog: 3.28.1 → 3.28.2 2018-05-08 02:36:21 +02:00
Jan Tojnar 47d29c502f gnome3.gnome-music: 3.28.1 → 3.28.2 2018-05-08 02:36:10 +02:00
Jan Tojnar 2415bdc78e gnome3.gnome-maps: 3.28.1 → 3.28.2 2018-05-08 02:36:02 +02:00
Jan Tojnar 048de32f28 gnome3.gnome-logs: 3.28.0 → 3.28.2 2018-05-08 02:35:52 +02:00
Jan Tojnar 2a5ce6157a gnome3.gnome-characters: 3.28.0 → 3.28.2 2018-05-08 02:35:43 +02:00
Jan Tojnar df8665d04e gnome3.gnome-calendar: 3.28.1 → 3.28.2 2018-05-08 02:35:29 +02:00
Jan Tojnar cafac77e20 gnome3.gnome-boxes: 3.28.2 → 3.28.3 2018-05-08 02:35:09 +02:00