[Nix-commits] [NixOS/nixpkgs] d4beee: vlc: compile against qt 5.6

2017-03-12 Thread Peter Hoeg
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: d4beeef3ce78c1ef0077db51136664553a51eaff
  
https://github.com/NixOS/nixpkgs/commit/d4beeef3ce78c1ef0077db51136664553a51eaff
  Author: Peter Hoeg 
  Date:   2017-03-13 (Mon, 13 Mar 2017)

  Changed paths:
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  vlc: compile against qt 5.6


  Commit: eb7690ab0628bae91adf0586bb3237602167
  
https://github.com/NixOS/nixpkgs/commit/eb7690ab0628bae91adf0586bb3237602167
  Author: Peter Hoeg 
  Date:   2017-03-13 (Mon, 13 Mar 2017)

  Changed paths:
M pkgs/applications/misc/qsyncthingtray/default.nix

  Log Message:
  ---
  qsyncthingtray: broken on qt 5.7


  Commit: f7fd8a6f73aa58307c178c8b3141abf2af92d6e0
  
https://github.com/NixOS/nixpkgs/commit/f7fd8a6f73aa58307c178c8b3141abf2af92d6e0
  Author: Peter Hoeg 
  Date:   2017-03-13 (Mon, 13 Mar 2017)

  Changed paths:
M pkgs/applications/misc/xca/default.nix

  Log Message:
  ---
  xca: broken on qt 5.7


Compare: https://github.com/NixOS/nixpkgs/compare/cf7d4bf8af48...f7fd8a6f73aa___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] cf7d4b: kubernetes: 1.5.2 -> 1.5.4

2017-03-12 Thread Dan Peebles
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: cf7d4bf8af4829e6a7ad1abf19109e0a19fcc41c
  
https://github.com/NixOS/nixpkgs/commit/cf7d4bf8af4829e6a7ad1abf19109e0a19fcc41c
  Author: Dan Peebles 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/applications/networking/cluster/kubernetes/default.nix

  Log Message:
  ---
  kubernetes: 1.5.2 -> 1.5.4


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


Re: [Nix-dev] nixos-container networking

2017-03-12 Thread Michael Walker
Tomasz,

I have declarative container networking set up and working on a VPS,
but I wrote most of the configuration as I was learning things, so it
may not be the best way.

Here's the configuration.nix for the VPS:
https://github.com/barrucadu/nixfiles/blob/master/hosts/innsmouth.nix
Each container has a config file here:
https://github.com/barrucadu/nixfiles/tree/master/containers

Containers have ports forwarded to them via NAT; each container is
running a web server on port 80 with the host reverse-proxying via
nginx; the host also does https and letsencrypt for all the proxied
containers.

At the top of the innsmouth.nix file, I have a "containerSpecs" record
which has all the details for each container. The relevant bits of the
config are:

1. Set up the networking and NAT:

networking.nat.enable = true;
networking.nat.internalInterfaces = ["ve-+"];
networking.nat.externalInterface = "enp0s4";

2. Forward ports to containers:

networking.nat.forwardPorts = concatMap
( {num, ports, ...}:
map (p: { sourcePort = p; destination =
"192.168.255.${toString num}:${toString p}"; }) ports
) containerSpecs';

3. Define all the containers:

containers = mapAttrs
(_: {num, config, ...}:
{ autoStart = true
; privateNetwork = true
; hostAddress = "192.168.254.${toString num}"
; localAddress = "192.168.255.${toString num}"
; config = config
; }
) containerSpecs;

4. Reverse-proxy HTTPS to HTTP in each container, manage letsencrypt
certificates, and forward HTTP to HTTPS.

This is a little complex as I have a fairly custom nginx config (see
the services/nginx.nix file in the repository), but the
reverse-proxying is fairly straightfoward. Here is the generated
nginx.conf: https://misc.barrucadu.co.uk/nginx.txt

On 13 March 2017 at 02:12, Tomasz Czyż  wrote:
> Hey,
>
> could anyone using nixos-container (declarative style) share how you setup
> networking?
>
> I'm trying to setup few containers with private network and http proxy at
> the front. Each container potentially could run application on port 80 and I
> would like to expose them through proxy.
>
> I tried to set this up with
>
> privateNetwork=true;
> hostAddress
> localAddress
>
> and I tried to also run nat on the host with (just to enable outbound
> traffic)
> internalInterfaces = ["ve-+"];
> externalInterfaces = "eth0";
>
> but no luck.
> My next try will be creating bridge on the host and add containers to that
> bridge. Is that how you do stuff or are better ways of doing container
> networking?
>
> Tom
>
> ___
> nix-dev mailing list
> nix-dev@lists.science.uu.nl
> http://lists.science.uu.nl/mailman/listinfo/nix-dev
>



-- 
Michael Walker (http://www.barrucadu.co.uk)
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev


[Nix-commits] [NixOS/nixpkgs] 23e4e3: kops: enable on Darwin

2017-03-12 Thread Dan Peebles
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 23e4e32b91f40a569ca8e0b213ab531455b5fb7e
  
https://github.com/NixOS/nixpkgs/commit/23e4e32b91f40a569ca8e0b213ab531455b5fb7e
  Author: Dan Peebles 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/applications/networking/cluster/kops/default.nix

  Log Message:
  ---
  kops: enable on Darwin


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-dev] nixos-container networking

2017-03-12 Thread Tomasz Czyż
Hey,

could anyone using nixos-container (declarative style) share how you setup
networking?

I'm trying to setup few containers with private network and http proxy at
the front. Each container potentially could run application on port 80 and
I would like to expose them through proxy.

I tried to set this up with

privateNetwork=true;
hostAddress
localAddress

and I tried to also run nat on the host with (just to enable outbound
traffic)
internalInterfaces = ["ve-+"];
externalInterfaces = "eth0";

but no luck.
My next try will be creating bridge on the host and add containers to that
bridge. Is that how you do stuff or are better ways of doing container
networking?

Tom
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev


[Nix-commits] [NixOS/nixpkgs] 09c737: mmex: v1.3.1 -> v1.3.3 (#23732)

2017-03-12 Thread andyjscott
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 09c73776b952c6f99856263eb86b422cf09d913d
  
https://github.com/NixOS/nixpkgs/commit/09c73776b952c6f99856263eb86b422cf09d913d
  Author: andyjscott 
  Date:   2017-03-13 (Mon, 13 Mar 2017)

  Changed paths:
M pkgs/applications/office/mmex/default.nix

  Log Message:
  ---
  mmex: v1.3.1 -> v1.3.3 (#23732)


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 14db0b: pbrt: 2016-05-19 -> 2017-01-12 (#23405)

2017-03-12 Thread Julien Dehos
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 14db0b9ef3315e87c07cdc9195cc543c21e63bd5
  
https://github.com/NixOS/nixpkgs/commit/14db0b9ef3315e87c07cdc9195cc543c21e63bd5
  Author: Julien Dehos 
  Date:   2017-03-13 (Mon, 13 Mar 2017)

  Changed paths:
M pkgs/applications/graphics/pbrt/default.nix

  Log Message:
  ---
  pbrt: 2016-05-19 -> 2017-01-12 (#23405)


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-dev] nvidia-x11

2017-03-12 Thread Karn Kallio

The attached patch advances the Nixpkgs nvidia-x11 expression to the
version 375.39, the latest long term stable release.  It also patches
it for the 4.10 kernel.
>From c251121bdcb24239a8ec05e78696bf20059e2da3 Mon Sep 17 00:00:00 2001
From: Karn Kallio 
Date: Sun, 12 Mar 2017 20:19:57 -0400
Subject: [PATCH] nvidia-x11 : advance to 375.39, the latest long term stable
 release. Also patch for kernel 4.10.

---
 pkgs/os-specific/linux/nvidia-x11/default.nix  |  10 +-
 pkgs/os-specific/linux/nvidia-x11/generic.nix  |   2 +
 .../nvidia-x11/nvidia-375.39-linux-4.10.patch  | 293 +
 3 files changed, 300 insertions(+), 5 deletions(-)
 create mode 100644 pkgs/os-specific/linux/nvidia-x11/nvidia-375.39-linux-4.10.patch

diff --git a/pkgs/os-specific/linux/nvidia-x11/default.nix b/pkgs/os-specific/linux/nvidia-x11/default.nix
index 5e26fef6e1..95ad3a961f 100644
--- a/pkgs/os-specific/linux/nvidia-x11/default.nix
+++ b/pkgs/os-specific/linux/nvidia-x11/default.nix
@@ -6,11 +6,11 @@ in
 {
   # Policy: use the highest stable version as the default (on our master).
   stable = generic {
-version = "375.26";
-sha256_32bit = "0yv19rkz2wzzj0fygfjb1mh21iy769kff3yg2kzk8bsiwnmcyybw";
-sha256_64bit = "1kqy9ayja3g5znj2hzx8pklz8qi0b0l9da7c3ldg3hlxf31v4hjg";
-settingsSha256 = "1s8zf5cfhx8m05fvws0gh1q0wy5zyyg2j510zlwp4hk35y7dic5y";
-persistencedSha256 = "15r6rbzyk4yaqkpkqs8j00zc7jbhgp8naskv93dwjyw0lnj0wgky";
+version = "375.39";
+sha256_32bit = "0mlly5n84640xa2mcdqqg44s42ck6g3lj5skf7gmfp2w5ibzccvz";
+sha256_64bit = "19w5v81f770rqjrvdwz11k015zli2y8f4x10ydqxcy0nhhh5mgli";
+settingsSha256 = "0f881q4jzliqzqi1p5lzwz86h829m5g74zdj7nlfi1cc6s45g5p5";
+persistencedSha256 = "0zj6wdcgg2ljhvsssfsqz9wk28ykmsh4gwmis31q3rsrkq668x33";
   };
 
   beta = generic {
diff --git a/pkgs/os-specific/linux/nvidia-x11/generic.nix b/pkgs/os-specific/linux/nvidia-x11/generic.nix
index 9e39a6df09..cb3a99fb37 100644
--- a/pkgs/os-specific/linux/nvidia-x11/generic.nix
+++ b/pkgs/os-specific/linux/nvidia-x11/generic.nix
@@ -42,6 +42,8 @@ let
 }
   else throw "nvidia-x11 does not support platform ${stdenv.system}";
 
+patches = [] ++ optional (!libsOnly && versionAtLeast kernel.dev.version "4.10" && version == "375.39") ./nvidia-375.39-linux-4.10.patch ;
+
 inherit version useGLVND useProfiles;
 inherit (stdenv) system;
 
diff --git a/pkgs/os-specific/linux/nvidia-x11/nvidia-375.39-linux-4.10.patch b/pkgs/os-specific/linux/nvidia-x11/nvidia-375.39-linux-4.10.patch
new file mode 100644
index 00..4812b63f22
--- /dev/null
+++ b/pkgs/os-specific/linux/nvidia-x11/nvidia-375.39-linux-4.10.patch
@@ -0,0 +1,293 @@
+diff -Nurp temp/NVIDIA-Linux-x86_64-375.39/kernel/common/inc/nv-linux.h NVIDIA-Linux-x86_64-375.39/kernel/common/inc/nv-linux.h
+--- temp/NVIDIA-Linux-x86_64-375.39/kernel/common/inc/nv-linux.h	2017-02-01 13:50:37.0 +1100
 NVIDIA-Linux-x86_64-375.39/kernel/common/inc/nv-linux.h	2017-02-20 14:49:55.758847585 +1100
+@@ -294,7 +294,8 @@ NV_STATUS nvos_forward_error_to_cray(str
+ 
+ extern int nv_pat_mode;
+ 
+-#if defined(CONFIG_HOTPLUG_CPU)
++//#if defined(CONFIG_HOTPLUG_CPU)
++#if 0
+ #define NV_ENABLE_HOTPLUG_CPU
+ #include   /* CPU hotplug support  */
+ #include  /* struct notifier_block, etc   */
+diff -Nurp temp/NVIDIA-Linux-x86_64-375.39/kernel/nv_compiler.h NVIDIA-Linux-x86_64-375.39/kernel/nv_compiler.h
+--- temp/NVIDIA-Linux-x86_64-375.39/kernel/nv_compiler.h	1970-01-01 10:00:00.0 +1000
 NVIDIA-Linux-x86_64-375.39/kernel/nv_compiler.h	2017-02-20 14:46:39.397338730 +1100
+@@ -0,0 +1 @@
++#define NV_COMPILER "gcc version 6.2.0 20161005 (Ubuntu 6.2.0-5ubuntu12) "
+diff -Nurp temp/NVIDIA-Linux-x86_64-375.39/kernel/nvidia/nv-p2p.c NVIDIA-Linux-x86_64-375.39/kernel/nvidia/nv-p2p.c
+--- temp/NVIDIA-Linux-x86_64-375.39/kernel/nvidia/nv-p2p.c	2017-02-01 13:50:37.0 +1100
 NVIDIA-Linux-x86_64-375.39/kernel/nvidia/nv-p2p.c	2017-02-20 14:49:55.758847585 +1100
+@@ -146,7 +146,7 @@ EXPORT_SYMBOL(nvidia_p2p_destroy_mapping
+ int nvidia_p2p_get_pages(
+ uint64_t p2p_token,
+ uint32_t va_space,
+-uint64_t virtual_address,
++uint64_t address,
+ uint64_t length,
+ struct nvidia_p2p_page_table **page_table,
+ void (*free_callback)(void * data),
+@@ -211,7 +211,7 @@ int nvidia_p2p_get_pages(
+ }
+ 
+ status = rm_p2p_get_pages(sp, p2p_token, va_space,
+-virtual_address, length, physical_addresses, wreqmb_h,
++address, length, physical_addresses, wreqmb_h,
+ rreqmb_h, , _uuid, *page_table,
+ free_callback, data);
+ if (status != NV_OK)
+@@ -286,7 +286,7 @@ failed:
+ 
+ if (bGetPages)
+ {
+-rm_p2p_put_pages(sp, p2p_token, va_space, virtual_address,
++rm_p2p_put_pages(sp, p2p_token, va_space, address,
+ gpu_uuid, *page_table);
+ }
+ 
+@@ -329,7 +329,7 @@ 

[Nix-commits] [NixOS/nixpkgs] 54b7c3: clisp-git: update to the upstream fix of 32-bit bu...

2017-03-12 Thread Michael Raskin
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 54b7c3b63fd46f66487f4b29fb4b42d0c6353118
  
https://github.com/NixOS/nixpkgs/commit/54b7c3b63fd46f66487f4b29fb4b42d0c6353118
  Author: Michael Raskin <7c6f4...@mail.ru>
  Date:   2017-03-13 (Mon, 13 Mar 2017)

  Changed paths:
M pkgs/development/interpreters/clisp/hg.nix

  Log Message:
  ---
  clisp-git: update to the upstream fix of 32-bit builds

The current exact tip fails to build on x86_64, there probably is a
fresher safe commit, but I haven't try bisecting.


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] ba0b52: exim: 4.88 -> 4.89 (#23670)

2017-03-12 Thread tv
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: ba0b527456ac6885f0dd4a287d028384ffbf82b2
  
https://github.com/NixOS/nixpkgs/commit/ba0b527456ac6885f0dd4a287d028384ffbf82b2
  Author: tv 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/servers/mail/exim/default.nix

  Log Message:
  ---
  exim: 4.88 -> 4.89 (#23670)


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] e47b81: asterisk: use fetchsvn for vendored library

2017-03-12 Thread Kranium Gikos Mendoza
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: e47b819ef1a807e06d418ed892728efd47f9d9e6
  
https://github.com/NixOS/nixpkgs/commit/e47b819ef1a807e06d418ed892728efd47f9d9e6
  Author: Kranium Gikos Mendoza 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/servers/asterisk/default.nix

  Log Message:
  ---
  asterisk: use fetchsvn for vendored library

(cherry picked from commit ac61ddef8ff6509549b0f8da588e668cadcf49bf)
/cc #23124, #23253.  It failed to build otherwise.


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 848423: clisp-tip: make the build more reliable

2017-03-12 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 848423f2234fc3e008799ca9475d7a164164cac8
  
https://github.com/NixOS/nixpkgs/commit/848423f2234fc3e008799ca9475d7a164164cac8
  Author: Vladimír Čunát 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/development/interpreters/clisp/hg.nix

  Log Message:
  ---
  clisp-tip: make the build more reliable

Hydra shows it sometimes fails without autoconf:
http://hydra.nixos.org/job/nixos/trunk-combined/nixpkgs.clisp-tip.x86_64-linux
I can't say I understand why this happened.


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 39cd6c: Add subl symlink for Sublime Text 3 (#23815)

2017-03-12 Thread Olegs Jeremejevs
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 39cd6ccb8e557ea7697c932f2537ac5979f4dc3d
  
https://github.com/NixOS/nixpkgs/commit/39cd6ccb8e557ea7697c932f2537ac5979f4dc3d
  Author: Olegs Jeremejevs 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/applications/editors/sublime3/default.nix

  Log Message:
  ---
  Add subl symlink for Sublime Text 3 (#23815)


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 6c99f8: fix typo in comment

2017-03-12 Thread Benno Fünfstück
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 6c99f88eeced94c9940e45419c4608a766a02487
  
https://github.com/NixOS/nixpkgs/commit/6c99f88eeced94c9940e45419c4608a766a02487
  Author: Benno Fünfstück 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/development/haskell-modules/configuration-nix.nix

  Log Message:
  ---
  fix typo in comment


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 039c6a: haskell: comment about configuration-nix.nix's int...

2017-03-12 Thread Benno Fünfstück
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 039c6a6dfad1d37c09411fecaf8e821f108f12cf
  
https://github.com/NixOS/nixpkgs/commit/039c6a6dfad1d37c09411fecaf8e821f108f12cf
  Author: Benno Fünfstück 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/development/haskell-modules/configuration-nix.nix

  Log Message:
  ---
  haskell: comment about configuration-nix.nix's intersectAttrs


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 2df3b5: geogebra: 5-0-331-0 -> 5-0-338-0 (#23593)

2017-03-12 Thread Maximilian Bosch
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 2df3b5ca7f52393e32cbdef9ae50df9dff863ec2
  
https://github.com/NixOS/nixpkgs/commit/2df3b5ca7f52393e32cbdef9ae50df9dff863ec2
  Author: Maximilian Bosch 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/applications/science/math/geogebra/default.nix

  Log Message:
  ---
  geogebra: 5-0-331-0 -> 5-0-338-0 (#23593)


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 903700: coreclr: mark broken

2017-03-12 Thread obadz
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 903700188019870e8bfb0a321715e1f480d874da
  
https://github.com/NixOS/nixpkgs/commit/903700188019870e8bfb0a321715e1f480d874da
  Author: obadz 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/development/compilers/coreclr/default.nix

  Log Message:
  ---
  coreclr: mark broken

(cherry picked from commit 1dd16a93741c425880ac81d1e611af7be050c96b)


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 1dd16a: coreclr: mark broken

2017-03-12 Thread obadz
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 1dd16a93741c425880ac81d1e611af7be050c96b
  
https://github.com/NixOS/nixpkgs/commit/1dd16a93741c425880ac81d1e611af7be050c96b
  Author: obadz 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/development/compilers/coreclr/default.nix

  Log Message:
  ---
  coreclr: mark broken


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] d44bf4: ripgrep: install man-page

2017-03-12 Thread c74d
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: d44bf4c937767f5626a745ee4233eddebb830ced
  
https://github.com/NixOS/nixpkgs/commit/d44bf4c937767f5626a745ee4233eddebb830ced
  Author: c74d <857...@gmail.com>
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/tools/text/ripgrep/default.nix

  Log Message:
  ---
  ripgrep: install man-page

Modify the `ripgrep` package to install the tool's manual page.

I have tested this commit per nixpkgs manual section 11.1 ("Making
patches").

(cherry picked from commit a856dd50b5e9d7f4de1acd158c4ae548f6de86be)


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 161d73: ripgrep: install man-page

2017-03-12 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 161d73c1639a3da02389137baa310883bd54221a
  
https://github.com/NixOS/nixpkgs/commit/161d73c1639a3da02389137baa310883bd54221a
  Author: c74d <857...@gmail.com>
  Date:   2017-03-10 (Fri, 10 Mar 2017)

  Changed paths:
M pkgs/tools/text/ripgrep/default.nix

  Log Message:
  ---
  ripgrep: install man-page

Modify the `ripgrep` package to install the tool's manual page.

I have tested this commit per nixpkgs manual section 11.1 ("Making
patches").


  Commit: 3a5912c049533b6257439e54d8c9b02d08e79c72
  
https://github.com/NixOS/nixpkgs/commit/3a5912c049533b6257439e54d8c9b02d08e79c72
  Author: Jörg Thalheim 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/tools/text/ripgrep/default.nix

  Log Message:
  ---
  Merge pull request #23694 from 8573/8573/fix/pkg/ripgrep/install-man-page/1

ripgrep: install man-page


Compare: https://github.com/NixOS/nixpkgs/compare/3d9d879bc0d5...3a5912c04953___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 3d9d87: ace: 6.3.3 -> 6.4.2

2017-03-12 Thread ndowens
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 3d9d879bc0d54bf22988b16f40b3c04c04753bc8
  
https://github.com/NixOS/nixpkgs/commit/3d9d879bc0d54bf22988b16f40b3c04c04753bc8
  Author: ndowens 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/development/libraries/ace/default.nix

  Log Message:
  ---
  ace: 6.3.3 -> 6.4.2


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 1d948d: caf: init at 0.15.3

2017-03-12 Thread Bo Bakker
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 1d948ddc016882b2189bfebcb501ebafee53a6fb
  
https://github.com/NixOS/nixpkgs/commit/1d948ddc016882b2189bfebcb501ebafee53a6fb
  Author: Bo Bakker 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M lib/maintainers.nix
A pkgs/development/libraries/caf/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  caf: init at 0.15.3

fixes #23772


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] f303ac: csound: 6.04 -> 6.08.1

2017-03-12 Thread hlolli
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: f303ac7c79b000a8438cd62438db64b17f13f792
  
https://github.com/NixOS/nixpkgs/commit/f303ac7c79b000a8438cd62438db64b17f13f792
  Author: hlolli 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/applications/audio/csound/default.nix

  Log Message:
  ---
  csound: 6.04 -> 6.08.1

fixes #23767


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] a99e4f: scala: put docs in correct subdirectory

2017-03-12 Thread Rodney Lorrimar
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: a99e4f28e95f51a7869a2f95abd7a98bff7093b0
  
https://github.com/NixOS/nixpkgs/commit/a99e4f28e95f51a7869a2f95abd7a98bff7093b0
  Author: Rodney Lorrimar 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/development/compilers/scala/default.nix

  Log Message:
  ---
  scala: put docs in correct subdirectory

Under NixOS, /run/current-system/sw/share/doc was getting the license
file, etc.

(cherry picked from commit e333a71478730c63510b48131282f97b5e9c1af9)


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] c05ac3: makeDBusConf: re-add XDG directories for session b...

2017-03-12 Thread Nikolay Amiantov
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: c05ac3ea126300ee65345bd0b07ab212aa9b5f6a
  
https://github.com/NixOS/nixpkgs/commit/c05ac3ea126300ee65345bd0b07ab212aa9b5f6a
  Author: Nikolay Amiantov 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/development/libraries/dbus/make-session-conf.xsl

  Log Message:
  ---
  makeDBusConf: re-add XDG directories for session bus

Fixes #23770.


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-dev] Nix-store --repair doesn't seem to be repairing

2017-03-12 Thread Oliver Charles
Any idea what's going on here?

➜  ~ sudo nix-store --verify-path
/nix/store/2s0mb3dfp8bjmdckmzfp1vr3w3kr8s4v-gdbm-1.12

~
path ‘/nix/store/2s0mb3dfp8bjmdckmzfp1vr3w3kr8s4v-gdbm-1.12’ was modified!
expected hash
‘84e441a23c8487315633fcd4a609cb4cb6044c0e82e0c98851fe155a1ae79568’, got
‘1b2101d3abb7
ea991b5c72e9746163551560f3c6a173161a4dae61eb811f77e3’

➜  ~ sudo nix-store --repair-path
/nix/store/2s0mb3dfp8bjmdckmzfp1vr3w3kr8s4v-gdbm-1.12

~
fetching path ‘/nix/store/2s0mb3dfp8bjmdckmzfp1vr3w3kr8s4v-gdbm-1.12’...

*** Downloading ‘
http://cache.nixos.org/nar/1b9hwwq4vmzhyc4mb9pml8nwy2zb8zcj9bzm5f5s2bl8nyarinkv.nar.xz’
to ‘/nix/store/2s0mb3dfp8bjmdckmzfp1vr3w3kr8s4v-gdbm-1.12’...
 % Total% Received % Xferd  Average Speed   TimeTime Time
 Current
Dload  Upload   Total   SpentLeft
 Speed
100  132k  100  132k0 0   464k  0 --:--:-- --:--:-- --:--:--
 465k

➜  ~ sudo nix-store --verify-path
/nix/store/2s0mb3dfp8bjmdckmzfp1vr3w3kr8s4v-gdbm-1.12

~
path ‘/nix/store/2s0mb3dfp8bjmdckmzfp1vr3w3kr8s4v-gdbm-1.12’ was modified!
expected hash
‘84e441a23c8487315633fcd4a609cb4cb6044c0e82e0c98851fe155a1ae79568’, got
‘1b2101d3abb7
ea991b5c72e9746163551560f3c6a173161a4dae61eb811f77e3’
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev


[Nix-commits] [NixOS/nixpkgs] 537aa6: grsecurity: 4.9.13-201703052141 -> 4.9.14-20170312...

2017-03-12 Thread Joachim Fasting
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 537aa63248550112deb99bc2f9c3f2773f419442
  
https://github.com/NixOS/nixpkgs/commit/537aa63248550112deb99bc2f9c3f2773f419442
  Author: Joachim Fasting 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/os-specific/linux/kernel/linux-grsecurity.nix
M pkgs/os-specific/linux/kernel/patches.nix

  Log Message:
  ---
  grsecurity: 4.9.13-201703052141 -> 4.9.14-201703121245

(cherry picked from commit 4c211bdc635358c2888afb8371f8a7854bb14403)


  Commit: 74c77fa944c78a823d837eb660ac504270b5933f
  
https://github.com/NixOS/nixpkgs/commit/74c77fa944c78a823d837eb660ac504270b5933f
  Author: Joachim Fasting 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/os-specific/linux/kernel/linux-4.9.nix

  Log Message:
  ---
  linux_4_9: 4.9.13 -> 4.9.14

(cherry picked from commit 8091c1b208a439c068300b7c564ea8470445dd21)


Compare: https://github.com/NixOS/nixpkgs/compare/463eb1649f0c...74c77fa944c7___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 463eb1: drumstick: 1.0.2 -> 1.1.0

2017-03-12 Thread ndowens
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 463eb1649f0c1a494a92ffeb83f7f0241e16f3ee
  
https://github.com/NixOS/nixpkgs/commit/463eb1649f0c1a494a92ffeb83f7f0241e16f3ee
  Author: ndowens 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/development/libraries/drumstick/default.nix

  Log Message:
  ---
  drumstick: 1.0.2 -> 1.1.0

(cherry picked from commit 45cfd3969ae954da8b7f804df6e9ec2833c5eb7f)


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 45cfd3: drumstick: 1.0.2 -> 1.1.0

2017-03-12 Thread ndowens
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 45cfd3969ae954da8b7f804df6e9ec2833c5eb7f
  
https://github.com/NixOS/nixpkgs/commit/45cfd3969ae954da8b7f804df6e9ec2833c5eb7f
  Author: ndowens 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/development/libraries/drumstick/default.nix

  Log Message:
  ---
  drumstick: 1.0.2 -> 1.1.0


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] b45aee: Merge pull request #23766 from orivej/kcachegrind-...

2017-03-12 Thread Thomas Tuegel
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: b45aee491fbd2a9493d4726c955360e60c2a5754
  
https://github.com/NixOS/nixpkgs/commit/b45aee491fbd2a9493d4726c955360e60c2a5754
  Author: Thomas Tuegel 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/applications/kde/default.nix
A pkgs/applications/kde/kcachegrind.nix

  Log Message:
  ---
  Merge pull request #23766 from orivej/kcachegrind-kdelibs

kcachegrind: init at 16.2.2

(cherry picked from commit 28e78fd3dcf330ff9293b9acc9a45cdb1c4df257)
It's just adding a new package (back).


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 2a9208: krfb: init at 16.12.2

2017-03-12 Thread Thomas Tuegel
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 2a9208cd2421674f04df6c283b4356dfbffb2b1a
  
https://github.com/NixOS/nixpkgs/commit/2a9208cd2421674f04df6c283b4356dfbffb2b1a
  Author: Matt McHenry 
  Date:   2017-03-11 (Sat, 11 Mar 2017)

  Changed paths:
M pkgs/applications/kde/default.nix
A pkgs/applications/kde/krfb.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  krfb: init at 16.12.2


  Commit: ce180eb109563c1287a200db7920531ab3d2e507
  
https://github.com/NixOS/nixpkgs/commit/ce180eb109563c1287a200db7920531ab3d2e507
  Author: Thomas Tuegel 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/applications/kde/default.nix
A pkgs/applications/kde/krfb.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  Merge pull request #23755 from jerith666/krfb

krfb: expose kde 5 version


Compare: https://github.com/NixOS/nixpkgs/compare/28e78fd3dcf3...ce180eb10956___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 8cc103: kcachegrind: init at 16.2.2

2017-03-12 Thread Thomas Tuegel
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 8cc10357ce3cef5e7dc18bb53cc4f02a16bb131e
  
https://github.com/NixOS/nixpkgs/commit/8cc10357ce3cef5e7dc18bb53cc4f02a16bb131e
  Author: Orivej Desh 
  Date:   2017-03-11 (Sat, 11 Mar 2017)

  Changed paths:
M pkgs/applications/kde/default.nix
A pkgs/applications/kde/kcachegrind.nix

  Log Message:
  ---
  kcachegrind: init at 16.2.2


  Commit: 28e78fd3dcf330ff9293b9acc9a45cdb1c4df257
  
https://github.com/NixOS/nixpkgs/commit/28e78fd3dcf330ff9293b9acc9a45cdb1c4df257
  Author: Thomas Tuegel 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/applications/kde/default.nix
A pkgs/applications/kde/kcachegrind.nix

  Log Message:
  ---
  Merge pull request #23766 from orivej/kcachegrind-kdelibs

kcachegrind: init at 16.2.2


Compare: https://github.com/NixOS/nixpkgs/compare/3c37edb928a5...28e78fd3dcf3___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 3c37ed: tinycc: 0.9.27pre-20170220 -> 20170225

2017-03-12 Thread Joachim Fasting
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 3c37edb928a569603ac43c7b810fd6bc738d
  
https://github.com/NixOS/nixpkgs/commit/3c37edb928a569603ac43c7b810fd6bc738d
  Author: Joachim Fasting 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/development/compilers/tinycc/default.nix

  Log Message:
  ---
  tinycc: 0.9.27pre-20170220 -> 20170225

Contains a fix for x86-64 asm gen and unified cross-compilation.


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] b8685d: cups: 2.1.4 -> 2.2.2

2017-03-12 Thread Vladimír Čunát
  Branch: refs/heads/staging
  Home:   https://github.com/NixOS/nixpkgs
  Commit: b8685ddf68e0b17ee7767856454b94d355007887
  
https://github.com/NixOS/nixpkgs/commit/b8685ddf68e0b17ee7767856454b94d355007887
  Author: Vladimír Čunát 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/misc/cups/default.nix

  Log Message:
  ---
  cups: 2.1.4 -> 2.2.2

The changelog seems safe, test succeeds on x86_64-linux.


  Commit: 2e4c5711a29ccf47bab1a16efc2743bf31b1874f
  
https://github.com/NixOS/nixpkgs/commit/2e4c5711a29ccf47bab1a16efc2743bf31b1874f
  Author: Vladimír Čunát 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/misc/cups/default.nix

  Log Message:
  ---
  cups: minor expression refactoring


  Commit: 50fadc8b18fb3da6bda2f3710009a15f6ac45567
  
https://github.com/NixOS/nixpkgs/commit/50fadc8b18fb3da6bda2f3710009a15f6ac45567
  Author: Vladimír Čunát 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M nixos/modules/services/printing/cupsd.nix
M pkgs/applications/networking/browsers/opera/default.nix
M pkgs/development/libraries/qt-4.x/4.8/default.nix
M pkgs/misc/cups/default.nix
M pkgs/misc/cups/drivers/samsung/4.00.39/default.nix
M pkgs/misc/cups/drivers/samsung/default.nix

  Log Message:
  ---
  cups: split the $lib output

This saves > 10 MB from most closures.
Printing test succeeds on x86_64-linux.


  Commit: 45115b19377d17ae7138f2f0a1eef2db336f59d8
  
https://github.com/NixOS/nixpkgs/commit/45115b19377d17ae7138f2f0a1eef2db336f59d8
  Author: Vladimír Čunát 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M nixos/modules/services/printing/cupsd.nix
M pkgs/applications/networking/browsers/opera/default.nix
M pkgs/development/libraries/qt-4.x/4.8/default.nix
M pkgs/misc/cups/default.nix
M pkgs/misc/cups/drivers/samsung/4.00.39/default.nix
M pkgs/misc/cups/drivers/samsung/default.nix

  Log Message:
  ---
  Merge: cups improvements (update, split $lib)

Fixes #23793.  /cc maintainer @jgeerds.


Compare: https://github.com/NixOS/nixpkgs/compare/e24261ed16e5...45115b19377d___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


Re: [Nix-dev] Hydra is down?

2017-03-12 Thread Vladimír Čunát
On 03/12/2017 06:50 PM, Michael Alan Dorman wrote:
> The web interface at least hasn't been available for a number of hours.

Yes, basically the whole weekend, I think.  I expect admins will be
fixing this during Monday's morning (but I'm just guessing from past
experience).

--Vladimir




smime.p7s
Description: S/MIME Cryptographic Signature
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev


[Nix-commits] [NixOS/nixpkgs] ef741d: cl:1.2.1 -> 1.2.3

2017-03-12 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: ef741de5b1b125a5e22700b91ed0907e0f1500ab
  
https://github.com/NixOS/nixpkgs/commit/ef741de5b1b125a5e22700b91ed0907e0f1500ab
  Author: ndowens 
  Date:   2017-03-11 (Sat, 11 Mar 2017)

  Changed paths:
M pkgs/development/libraries/cl/default.nix

  Log Message:
  ---
  cl:1.2.1 -> 1.2.3


  Commit: 55074a0e3cb559537305cb7658f5789c04ee5687
  
https://github.com/NixOS/nixpkgs/commit/55074a0e3cb559537305cb7658f5789c04ee5687
  Author: Jörg Thalheim 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/development/libraries/cl/default.nix

  Log Message:
  ---
  Merge pull request #23783 from ndowens/cl

cl:1.2.1 -> 1.2.3


Compare: https://github.com/NixOS/nixpkgs/compare/879ccfd69cc2...55074a0e3cb5___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-dev] Hydra is down?

2017-03-12 Thread Michael Alan Dorman
The web interface at least hasn't been available for a number of hours.
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev


[Nix-commits] [NixOS/nixpkgs] 5d025f: chipmunk:7.0.0 -> 7.0.1

2017-03-12 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 5d025f573114561650bd469d8fb7c3b47e80c4ae
  
https://github.com/NixOS/nixpkgs/commit/5d025f573114561650bd469d8fb7c3b47e80c4ae
  Author: ndowens 
  Date:   2017-03-11 (Sat, 11 Mar 2017)

  Changed paths:
M pkgs/development/libraries/chipmunk/default.nix

  Log Message:
  ---
  chipmunk:7.0.0 -> 7.0.1


  Commit: 879ccfd69cc248e483ba7f18f5d5d6258e1ef17e
  
https://github.com/NixOS/nixpkgs/commit/879ccfd69cc248e483ba7f18f5d5d6258e1ef17e
  Author: Jörg Thalheim 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/development/libraries/chipmunk/default.nix

  Log Message:
  ---
  Merge pull request #23779 from ndowens/chipmunk

chipmunk:7.0.0 -> 7.0.1


Compare: https://github.com/NixOS/nixpkgs/compare/8091c1b208a4...879ccfd69cc2___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


Re: [Nix-dev] eigen

2017-03-12 Thread Vladimír Čunát
On 03/12/2017 06:12 PM, Karn Kallio wrote:
> The attached patch removes an extra slash during the eigen postInstall
> sed expression that was causing the movit build to not find an eigen
> include and fail.

Pushed to master as d2e30a74f.

--Vladimir




smime.p7s
Description: S/MIME Cryptographic Signature
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev


[Nix-commits] [NixOS/nixpkgs] 4c211b: grsecurity: 4.9.13-201703052141 -> 4.9.14-20170312...

2017-03-12 Thread Joachim Fasting
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 4c211bdc635358c2888afb8371f8a7854bb14403
  
https://github.com/NixOS/nixpkgs/commit/4c211bdc635358c2888afb8371f8a7854bb14403
  Author: Joachim Fasting 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/os-specific/linux/kernel/linux-grsecurity.nix
M pkgs/os-specific/linux/kernel/patches.nix

  Log Message:
  ---
  grsecurity: 4.9.13-201703052141 -> 4.9.14-201703121245


  Commit: 8091c1b208a439c068300b7c564ea8470445dd21
  
https://github.com/NixOS/nixpkgs/commit/8091c1b208a439c068300b7c564ea8470445dd21
  Author: Joachim Fasting 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/os-specific/linux/kernel/linux-4.9.nix

  Log Message:
  ---
  linux_4_9: 4.9.13 -> 4.9.14


Compare: https://github.com/NixOS/nixpkgs/compare/d2e30a74f4d9...8091c1b208a4___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] d2e30a: eigen : Fix an extra slash.

2017-03-12 Thread Karn Kallio
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: d2e30a74f4d940899f5919e45558bf282022a577
  
https://github.com/NixOS/nixpkgs/commit/d2e30a74f4d940899f5919e45558bf282022a577
  Author: Karn Kallio 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/development/libraries/eigen/default.nix

  Log Message:
  ---
  eigen : Fix an extra slash.


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 496b29: dlib: 18.10 -> 19.4

2017-03-12 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 496b2930702c6ecab344fe6f6205dea0039ef43a
  
https://github.com/NixOS/nixpkgs/commit/496b2930702c6ecab344fe6f6205dea0039ef43a
  Author: ndowens 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/development/libraries/dlib/default.nix

  Log Message:
  ---
  dlib: 18.10 -> 19.4


  Commit: 28337316d12110832d7f5494a862a8b4fa4786b0
  
https://github.com/NixOS/nixpkgs/commit/28337316d12110832d7f5494a862a8b4fa4786b0
  Author: Jörg Thalheim 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/development/libraries/dlib/default.nix

  Log Message:
  ---
  Merge pull request #23796 from ndowens/dlib

dlib: 18.10 -> 19.4


Compare: https://github.com/NixOS/nixpkgs/compare/d0922896bee8...28337316d121___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 266232: Init HaLVM at 2.4.0

2017-03-12 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 26623240e93f8454ac69f66a3a025d98a7e94b71
  
https://github.com/NixOS/nixpkgs/commit/26623240e93f8454ac69f66a3a025d98a7e94b71
  Author: David Johnson 
  Date:   2017-03-10 (Fri, 10 Mar 2017)

  Changed paths:
M pkgs/development/compilers/ghc/7.10.3.nix
A pkgs/development/compilers/halvm/2.4.0.nix
A pkgs/development/haskell-modules/configuration-halvm-2.4.0.nix
M pkgs/development/haskell-modules/generic-builder.nix
M pkgs/development/haskell-modules/with-packages-wrapper.nix
M pkgs/top-level/haskell-packages.nix

  Log Message:
  ---
  Init HaLVM at 2.4.0


  Commit: d0922896bee8fba5689e6a3180c63ab9fff7e447
  
https://github.com/NixOS/nixpkgs/commit/d0922896bee8fba5689e6a3180c63ab9fff7e447
  Author: Jörg Thalheim 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/development/compilers/ghc/7.10.3.nix
A pkgs/development/compilers/halvm/2.4.0.nix
A pkgs/development/haskell-modules/configuration-halvm-2.4.0.nix
M pkgs/development/haskell-modules/generic-builder.nix
M pkgs/development/haskell-modules/with-packages-wrapper.nix
M pkgs/top-level/haskell-packages.nix

  Log Message:
  ---
  Merge pull request #23097 from dmjio/halvm

Initial commit of HaLVM support


Compare: https://github.com/NixOS/nixpkgs/compare/bcc375547771...d0922896bee8___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 5f03cf: concurrencykit: 0.4.5 -> 0.6.0

2017-03-12 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 5f03cf8f940f55e129be192220cd31d5222e9109
  
https://github.com/NixOS/nixpkgs/commit/5f03cf8f940f55e129be192220cd31d5222e9109
  Author: ndowens 
  Date:   2017-03-11 (Sat, 11 Mar 2017)

  Changed paths:
M pkgs/development/libraries/concurrencykit/default.nix

  Log Message:
  ---
  concurrencykit: 0.4.5 -> 0.6.0


  Commit: bcc37554777112402fd5c2b7c9bce47dbdd9dfd6
  
https://github.com/NixOS/nixpkgs/commit/bcc37554777112402fd5c2b7c9bce47dbdd9dfd6
  Author: Jörg Thalheim 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/development/libraries/concurrencykit/default.nix

  Log Message:
  ---
  Merge pull request #23784 from ndowens/ck

concurrencykit: 0.4.5 -> 0.6.0


Compare: https://github.com/NixOS/nixpkgs/compare/847a5d11cb22...bcc375547771___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] e333a7: scala: put docs in correct subdirectory

2017-03-12 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: e333a71478730c63510b48131282f97b5e9c1af9
  
https://github.com/NixOS/nixpkgs/commit/e333a71478730c63510b48131282f97b5e9c1af9
  Author: Rodney Lorrimar 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/development/compilers/scala/default.nix

  Log Message:
  ---
  scala: put docs in correct subdirectory

Under NixOS, /run/current-system/sw/share/doc was getting the license
file, etc.


  Commit: 847a5d11cb22fea4d65f214362d4a022846a9985
  
https://github.com/NixOS/nixpkgs/commit/847a5d11cb22fea4d65f214362d4a022846a9985
  Author: Jörg Thalheim 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/development/compilers/scala/default.nix

  Log Message:
  ---
  Merge pull request #23797 from rvl/scala-docs-subdir

scala: put docs in correct subdirectory


Compare: https://github.com/NixOS/nixpkgs/compare/69448187a476...847a5d11cb22___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 1f86d1: haskellPackages.llvm-general-darwin: fix #23794

2017-03-12 Thread Vladimír Čunát
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 1f86d1d5bb0088df8e73d0803540b8da0409048c
  
https://github.com/NixOS/nixpkgs/commit/1f86d1d5bb0088df8e73d0803540b8da0409048c
  Author: Vladimír Čunát 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/development/haskell-modules/configuration-nix.nix

  Log Message:
  ---
  haskellPackages.llvm-general-darwin: fix #23794

by hiding under llvm-general.  There seems no use in a separately named
attribute.  The derivations are unchanged.

(cherry picked from commit 69448187a47619f60f6506e3c96e36aed073e491)


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-dev] eigen

2017-03-12 Thread Karn Kallio

The attached patch removes an extra slash during the eigen postInstall
sed expression that was causing the movit build to not find an eigen
include and fail.

>From 9ff0b500b9d614b5beb7ee883440c2d5e265de19 Mon Sep 17 00:00:00 2001
From: Karn Kallio 
Date: Sun, 12 Mar 2017 13:09:00 -0400
Subject: [PATCH] eigen : Fix an extra slash.

---
 pkgs/development/libraries/eigen/default.nix | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pkgs/development/libraries/eigen/default.nix b/pkgs/development/libraries/eigen/default.nix
index c38759e0c7..374f52c9cb 100644
--- a/pkgs/development/libraries/eigen/default.nix
+++ b/pkgs/development/libraries/eigen/default.nix
@@ -15,7 +15,7 @@ stdenv.mkDerivation {
   nativeBuildInputs = [ cmake ];
 
   postInstall = ''
-sed -e '/Cflags:/s@''${prefix}@@' -i "$out"/share/pkgconfig/eigen3.pc
+sed -e '/Cflags:/s@''${prefix}/@@' -i "$out"/share/pkgconfig/eigen3.pc
   '';
   
   meta = with stdenv.lib; {
-- 
2.11.1

___
nix-dev mailing list
nix-dev@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-dev


[Nix-commits] [NixOS/nixpkgs] 42c2ba: neomutt: 20170128 -> 20170306

2017-03-12 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 42c2bac8c06a2d062134087de9807b40e1e4da15
  
https://github.com/NixOS/nixpkgs/commit/42c2bac8c06a2d062134087de9807b40e1e4da15
  Author: Bart Brouns 
  Date:   2017-03-11 (Sat, 11 Mar 2017)

  Changed paths:
M pkgs/applications/networking/mailreaders/neomutt/default.nix

  Log Message:
  ---
  neomutt: 20170128 -> 20170306


  Commit: beb2a2f63d0dfd0fa75d6a397291b528b994bc01
  
https://github.com/NixOS/nixpkgs/commit/beb2a2f63d0dfd0fa75d6a397291b528b994bc01
  Author: Jörg Thalheim 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/applications/networking/mailreaders/neomutt/default.nix

  Log Message:
  ---
  Merge pull request #23753 from magnetophon/neomutt

neomutt: 20170128 -> 20170306


Compare: https://github.com/NixOS/nixpkgs/compare/697838cbea0d...beb2a2f63d0d___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 697838: yasr: init at 0.6.9

2017-03-12 Thread Ji-Haeng Huh
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 697838cbea0d7aadb7ca3a4da78ab2753af2bf63
  
https://github.com/NixOS/nixpkgs/commit/697838cbea0d7aadb7ca3a4da78ab2753af2bf63
  Author: Ji-Haeng Huh 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
A pkgs/applications/audio/yasr/10_fix_openpty_forkpty_declarations
A pkgs/applications/audio/yasr/20_maxpathlen
A pkgs/applications/audio/yasr/30_conf
A pkgs/applications/audio/yasr/40_dectalk_extended_chars
A pkgs/applications/audio/yasr/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  yasr: init at 0.6.9

fixes #23188


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 2d47e1: kdevelop: 5.0.3 -> 5.0.4 (#23788)

2017-03-12 Thread Ambroz Bizjak
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 2d47e1be722df1e61132ae4a7b17444f3af656f9
  
https://github.com/NixOS/nixpkgs/commit/2d47e1be722df1e61132ae4a7b17444f3af656f9
  Author: Ambroz Bizjak 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/applications/editors/kdevelop5/kdevelop.nix
R 
pkgs/applications/editors/kdevelop5/kdevplatform-projectconfigskeleton.patch
M pkgs/applications/editors/kdevelop5/kdevplatform.nix

  Log Message:
  ---
  kdevelop: 5.0.3 -> 5.0.4 (#23788)


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 453529: nodePackages: support github:owner/repo scheme for...

2017-03-12 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 453529bd605a473b44802f8ac1df077ac98bf456
  
https://github.com/NixOS/nixpkgs/commit/453529bd605a473b44802f8ac1df077ac98bf456
  Author: Rodney Lorrimar 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/development/node-packages/node-env.nix

  Log Message:
  ---
  nodePackages: support github:owner/repo scheme for package deps

JS devs found a new way to be annoying - adjust code accordingly.

Have also put this change in PR svanderburg/node2nix#40


  Commit: 252e58a95e395d34a8d3925639ba565d0632eaf8
  
https://github.com/NixOS/nixpkgs/commit/252e58a95e395d34a8d3925639ba565d0632eaf8
  Author: Rodney Lorrimar 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/servers/web-apps/pump.io/generate.sh
M pkgs/servers/web-apps/pump.io/node-packages.nix

  Log Message:
  ---
  pump.io: 1.0.0 -> 3.0.0

The package stopped building for some unknown reason (npm could no
longer fetch a module).

This is one of the build failures listed in #23253.

http://hydra.nixos.org/build/49551309
http://hydra.nixos.org/build/49548753

Easiest fix is to upgrade to latest stable version and regenerate
packages with node2nix.

The databank-memcached dependency needed to be dropped due to
dependency failures.


  Commit: f1a1490135aaf4d2f1fe9b4001cc40718c6ebf2a
  
https://github.com/NixOS/nixpkgs/commit/f1a1490135aaf4d2f1fe9b4001cc40718c6ebf2a
  Author: Rodney Lorrimar 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M nixos/modules/services/web-apps/pump.io.nix

  Log Message:
  ---
  pumpio service: adjust upload directory config for 3.0.0

These changes are backwards compatible.


  Commit: f488b1811bf0ee1430ce728d661830e55abef88c
  
https://github.com/NixOS/nixpkgs/commit/f488b1811bf0ee1430ce728d661830e55abef88c
  Author: Rodney Lorrimar 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
A nixos/modules/services/web-apps/pump.io-configure.js
M nixos/modules/services/web-apps/pump.io.nix

  Log Message:
  ---
  pumpio service: don't keep secrets in nix store

Added extra config options to allow reading passwords from file rather
than the world-readable nix store.

The full config.json file is created at service startup.

Relevant to #18881


  Commit: 41625dcab64efe29c3b15876f27ec520927367bf
  
https://github.com/NixOS/nixpkgs/commit/41625dcab64efe29c3b15876f27ec520927367bf
  Author: Jörg Thalheim 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M nixos/tests/pump.io.nix

  Log Message:
  ---
  pump.io: fix tests

fixes #23568


Compare: https://github.com/NixOS/nixpkgs/compare/196f64d6756b...41625dcab64e___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 196f64: qbittorrent: 3.3.10 -> 3.3.11 (#23703)

2017-03-12 Thread José Romildo Malaquias
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 196f64d6756b1aa1a3a74c2eea35dbe1d15504fd
  
https://github.com/NixOS/nixpkgs/commit/196f64d6756b1aa1a3a74c2eea35dbe1d15504fd
  Author: José Romildo Malaquias 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/applications/networking/p2p/qbittorrent/default.nix

  Log Message:
  ---
  qbittorrent: 3.3.10 -> 3.3.11 (#23703)


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 16023e: enlightenment: 0.21.5 -> 0.21.7 (#23791)

2017-03-12 Thread José Romildo Malaquias
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 16023ef5984153febd0cca71e9848ebed6874799
  
https://github.com/NixOS/nixpkgs/commit/16023ef5984153febd0cca71e9848ebed6874799
  Author: José Romildo Malaquias 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/desktops/enlightenment/enlightenment.nix

  Log Message:
  ---
  enlightenment: 0.21.5 -> 0.21.7 (#23791)


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 1e17a5: gresecurity docs: fix incorrect option (#23789)

2017-03-12 Thread zetok
  Branch: refs/heads/release-16.09
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 1e17a56fbe657abd7e17963068e33d8ac8d5ce36
  
https://github.com/NixOS/nixpkgs/commit/1e17a56fbe657abd7e17963068e33d8ac8d5ce36
  Author: zetok 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M nixos/modules/security/grsecurity.xml

  Log Message:
  ---
  gresecurity docs: fix incorrect option (#23789)

(cherry picked from commit 4ca17dd6c099792f64399b2e9bd5b173ecee762f)


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 4d25ea: gresecurity docs: fix incorrect option (#23789)

2017-03-12 Thread zetok
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 4d25eaafa77df94b8823245d43200818f2167dd2
  
https://github.com/NixOS/nixpkgs/commit/4d25eaafa77df94b8823245d43200818f2167dd2
  Author: zetok 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M nixos/modules/security/grsecurity.xml

  Log Message:
  ---
  gresecurity docs: fix incorrect option (#23789)

(cherry picked from commit 4ca17dd6c099792f64399b2e9bd5b173ecee762f)


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 4ca17d: gresecurity docs: fix incorrect option (#23789)

2017-03-12 Thread zetok
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 4ca17dd6c099792f64399b2e9bd5b173ecee762f
  
https://github.com/NixOS/nixpkgs/commit/4ca17dd6c099792f64399b2e9bd5b173ecee762f
  Author: zetok 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M nixos/modules/security/grsecurity.xml

  Log Message:
  ---
  gresecurity docs: fix incorrect option (#23789)


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nix] 5789ea: Add aws-region param to S3 store URLs

2017-03-12 Thread Shea Levy
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nix
  Commit: 5789eaa3f45cadec719b4f642de2169b8b0a56c4
  
https://github.com/NixOS/nix/commit/5789eaa3f45cadec719b4f642de2169b8b0a56c4
  Author: Shea Levy 
  Date:   2017-03-03 (Fri, 03 Mar 2017)

  Changed paths:
M src/libstore/download.cc
M src/libstore/s3-binary-cache-store.cc
M src/libstore/s3.hh

  Log Message:
  ---
  Add aws-region param to S3 store URLs


  Commit: 96443e94a1932cff13f23d202839c53483b9290e
  
https://github.com/NixOS/nix/commit/96443e94a1932cff13f23d202839c53483b9290e
  Author: Shea Levy 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M src/libstore/download.cc
M src/libstore/s3-binary-cache-store.cc
M src/libstore/s3.hh

  Log Message:
  ---
  Merge branch 'configurable-aws-region'


Compare: https://github.com/NixOS/nix/compare/ae568847f5ee...96443e94a193___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] f5a551: emem: 0.2.34 -> 0.2.35

2017-03-12 Thread Rommel M. Martinez
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: f5a55163555b2520afafc5acb0174982905e7ed8
  
https://github.com/NixOS/nixpkgs/commit/f5a55163555b2520afafc5acb0174982905e7ed8
  Author: Rommel M. Martinez 
  Date:   2017-03-12 (Sun, 12 Mar 2017)

  Changed paths:
M pkgs/applications/misc/emem/default.nix

  Log Message:
  ---
  emem: 0.2.34 -> 0.2.35


___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
http://lists.science.uu.nl/mailman/listinfo/nix-commits