Commit Graph

73689 Commits

Author SHA1 Message Date
Thomas Tuegel
53979b54a8 Merge branch 'kde-applications-15.12' 2015-12-12 18:26:55 -06:00
Thomas Tuegel
7cdedaaf72 dropbox: use fields from upstream's desktop item 2015-12-12 17:26:41 -06:00
Thomas Tuegel
623a117bdd makeDesktopItem: add StartupNotify key 2015-12-12 17:25:56 -06:00
Thomas Tuegel
bce4e95a80 kdeApps_15_12: 15.11.80 -> 15.11.90 2015-12-12 17:21:48 -06:00
Thomas Tuegel
e0f6dc36c9 Merge branch 'breeze-icons' 2015-12-12 15:54:25 -06:00
Michael Raskin
e2833a8841 Merge pull request #11667 from anderspapitto/sysdig
Sysdig
2015-12-12 21:37:16 +01:00
Thomas Tuegel
d6e3a8e921 nixos/kde5: enable SVG icons in GTK programs
Fixes #10758.
2015-12-12 14:35:10 -06:00
Anders Papitto
229f0ac257 sysdig: 0.1.102 -> 0.5.1 2015-12-12 12:31:29 -08:00
Anders Papitto
9f71bba8a4 libb64: init at 1.2 2015-12-12 12:31:28 -08:00
Frederik Rietdijk
8f1c4b4dde python tqdm: init at 3.1.4 2015-12-12 21:04:16 +01:00
Asko Soukka
b6776d41dd zc.buildout-nix: 2.4.3 -> 2.5.0 2015-12-12 21:40:29 +02:00
goibhniu
6a4b71afa5 Merge pull request #11294 from mayflower/service/shairport-sync
shairport-sync service: add module
2015-12-12 20:37:44 +01:00
goibhniu
9474d6b99a Merge pull request #11653 from mayflower/libressl-fetchurlBoot
use fetchurlBoot in libressl
2015-12-12 20:33:29 +01:00
Franz Pletz
6734127545 shairport-sync service: add module
Adds a new service module for shairport-sync. Tested with a local
and remote pulseaudio server. Needs to be run as a user in the pulse group
to access pulseaudio.
2015-12-12 20:30:47 +01:00
Jakob Gillich
8da384edad virt-manager: 1.2.1 -> 1.3.1 2015-12-12 19:36:08 +01:00
Thomas Tuegel
ce9e17b784 Merge pull request #11660 from ttuegel/sddm-scripts
Configurable SDDM scripts
2015-12-12 12:01:46 -06:00
Thomas Tuegel
fac138a2f5 nixos/sddm: fix indentation 2015-12-12 11:36:45 -06:00
Thomas Tuegel
73a9826001 sddm: don't install empty scripts 2015-12-12 11:32:20 -06:00
Thomas Tuegel
b07fa98f82 nixos/sddm: add setupScript and stopScript options
These options allow setting the start and stop scripts for the display
manager. Making these configurable is necessary to allow some hardware
configurations. Upstream ships empty scripts by default, anyway.
2015-12-12 11:31:26 -06:00
Thomas Tuegel
f7edf63b23 ipe: use texlive-new 2015-12-12 10:57:38 -06:00
Thomas Tuegel
269ae2e29d gnuplot: use texlive-new 2015-12-12 10:47:03 -06:00
Thomas Tuegel
08d842ea09 Merge branch 'kde-frameworks-5.17' 2015-12-12 10:45:13 -06:00
Michael Raskin
19aa4f0a6b pixz: init at 1.0.6 2015-12-12 17:39:14 +01:00
Tobias Geerinckx-Rice
492541c378 miniupnpd 1.9.20150721 -> 1.9.20151212
Changes: https://github.com/miniupnp/miniupnp/blob/master/miniupnpd/Changelog.txt
2015-12-12 17:02:08 +01:00
Franz Pletz
1685b9d06e nixos/acme: Add module documentation 2015-12-12 16:06:53 +01:00
Franz Pletz
9374ddb895 nixos/acme: validMin & renewInterval aren't cert-specific 2015-12-12 16:06:53 +01:00
Franz Pletz
0517d59a66 nixos/acme: Improve documentation 2015-12-12 16:06:52 +01:00
Franz Pletz
de24b00d41 nixos/simp_le: Rename to security.acme 2015-12-12 16:06:52 +01:00
Franz Pletz
e7362a877d nixos/simp_le: Use systemd for setting user and group
This is much cleaner and we don't depend on sudo.
2015-12-12 16:06:52 +01:00
Nikolay Amiantov
1641c19d0b nixos/simp_le: use /var/lib/simp_le as root dir by default
/etc on NixOS is regenerated on boot and there was movement
towards making it read-only -- so let's keep dynamic state elsewhere.
2015-12-12 16:06:52 +01:00
Nikolay Amiantov
6906baae5c nixos/simp_le: improve configuration options 2015-12-12 16:06:52 +01:00
Nikolay Amiantov
adc693f982 simp_le: 20151205 -> 20151207 2015-12-12 16:06:51 +01:00
Franz Pletz
612781e816 simp_le service: letsencrypt cert auto-renewal
This new service invokes `simp_le` for a defined set of certs on a regular
basis with a systemd timer. `simp_le` is smart enough to handle account
registration, domain validation and renewal on its own. The only thing
required is an existing HTTP server that serves the path
`/.well-known/acme-challenge` from the webroot cert parameter.

Example:

  services.simp_le.certs."foo.example.com" = {
    webroot = "/var/www/challenges";
    extraDomains = [ "www.example.com" ];
    email = "foo@example.com";
    validMin = 2592000;
    renewInterval = "weekly";
  };

Example Nginx vhost:

  services.nginx.appendConfig = ''
    http {
      server {
        server_name _;
        listen 80;
        listen [::]:80;

        location /.well-known/acme-challenge {
          root /var/www/challenges;
        }

        location / {
          return 301 https://$host$request_uri;
        }
      }
    }
  '';
2015-12-12 16:06:51 +01:00
goibhniu
bb3c2fb246 Merge pull request #11524 from mcmtroffaes/feature/gosmore-fix-and-update
gosmore: r30811 -> r31801, fix sha256
2015-12-12 16:04:35 +01:00
Shea Levy
fb21fe3001 Merge branch 'update_gcc5' of git://github.com/lancelotsix/nixpkgs 2015-12-12 09:31:02 -05:00
Michael Raskin
c4bdf26035 Merge pull request #11657 from lancelotsix/update_freeipmi
pkgs.freeipmi: 1.4.9 -> 1.5.1
2015-12-12 15:10:47 +01:00
Thomas Tuegel
28b74a05af remove kf516 2015-12-12 08:09:48 -06:00
Lancelot SIX
f27dee4eb2 pkgs.freeipmi: 1.4.9 -> 1.5.1
See https://lists.gnu.org/archive/html/info-gnu/2015-12/msg00000.html
2015-12-12 15:04:59 +01:00
Shea Levy
178c20f0f6 perlPackages.LinuxDistribution: Disable test suite.
Fails on distros that aren't on its supported list, including NixOS.
2015-12-12 08:57:56 -05:00
Lancelot SIX
5aa99f680e pkgs.gdb: 7.10 -> 7.10.1
See https://lists.gnu.org/archive/html/info-gnu/2015-12/msg00003.html
2015-12-12 14:54:25 +01:00
Shea Levy
18af0f88d0 Linux 4.3: 4.3 -> 4.3.2 2015-12-12 08:46:34 -05:00
Lancelot SIX
4cf6fef6fc pkgs.gcc5: 5.2.0 -> 5.3.0
gcc-5.3.0 is a bug-fix release from the GCC 5 branch.

See https://lists.gnu.org/archive/html/info-gnu/2015-12/msg00002.html
2015-12-12 14:41:53 +01:00
Robin Gloster
77463eec42 use fetchurlBoot in libressl 2015-12-12 13:27:50 +00:00
Profpatsch
cc79a6360b geoclue2: 2.1.10 -> 2.4.1 2015-12-12 14:26:46 +01:00
Thomas Tuegel
54829da822 kf517.ki18n: add missing qtdeclarative dependency 2015-12-12 07:15:07 -06:00
Thomas Tuegel
e3aa60ed81 kf517: init at 5.17.0 2015-12-12 07:14:47 -06:00
Arseniy Seroka
a7987f934c Merge pull request #11642 from davidar/cmdstan
cmdstan: init at 2.9.0
2015-12-12 16:13:02 +03:00
Thomas Tuegel
40242c1bff kf516.breeze-icons: propagate qtsvg into user environment 2015-12-12 07:00:36 -06:00
Robin Gloster
2251af754e claws-mail: enable PGP plugin by default 2015-12-12 12:49:49 +00:00
David A Roberts
7200a5c079 cmdstan: init at 2.9.0 2015-12-12 22:42:01 +10:00