[Nix-commits] [NixOS/nixpkgs] c217f5: darwin.make-bootstrap-tools.test: fix build breaka...

2017-05-05 Thread Dan Peebles
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: c217f59344d6fc8e2299be9a6cdd248d72eae2fd
  
https://github.com/NixOS/nixpkgs/commit/c217f59344d6fc8e2299be9a6cdd248d72eae2fd
  Author: Dan Peebles 
  Date:   2017-05-05 (Fri, 05 May 2017)

  Changed paths:
M pkgs/stdenv/darwin/make-bootstrap-tools.nix

  Log Message:
  ---
  darwin.make-bootstrap-tools.test: fix build breakage

In the extremely unlikely case that our store hash path ends in several
digits (as is the case right now), the Darwin ld will try to interpret
those digits as a version number and barf. To avoid that, we pass in the
SDK version explicitly to stop it from trying to figure it out from iffy
context.


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


Re: [Nix-dev] Build a derivation using sbt

2017-05-05 Thread Graham Christensen
There is a project called sbtix you might look at:

https://github.com/teozkr/sbtix

I found the author very helpful when I got stuck.

Grahan
On Fri, May 5, 2017 at 6:14 PM Volth  wrote:

> Hello
>
> Anyone tried to build a derivation using sbt ?
> I found no one such project in nixpkgs.
>
> sbt feels very bad running under "nixbld1", it needs to create ~/.sbt
> ~/.ivy and to download tons of jars there...
> ___
> nix-dev mailing list
> nix-dev@lists.science.uu.nl
> https://mailman.science.uu.nl/mailman/listinfo/nix-dev
>
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-dev


[Nix-commits] [NixOS/nixpkgs] 7131e0: haskell: work around linker limits on Mac OS X Sie...

2017-05-05 Thread Shea Levy
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 7131e06214560625cc85b89d93df3764d223a6e6
  
https://github.com/NixOS/nixpkgs/commit/7131e06214560625cc85b89d93df3764d223a6e6
  Author: Judah Jacobson 
  Date:   2017-05-05 (Fri, 05 May 2017)

  Changed paths:
M pkgs/development/haskell-modules/generic-builder.nix
M pkgs/development/haskell-modules/with-packages-wrapper.nix

  Log Message:
  ---
  haskell: work around linker limits on Mac OS X Sierra.

The Sierra linker added a limit on the number of paths that any one
dynamic library (`*.dylib`) can reference.  This causes problems when
a Haskell library has many immediate dependencies (#22810).

We follow a similar fix as GHC/Cabal/Stack: for each derivation,
create a new directory with symlinks to all the dylibs of its immediate
dependencies, and patch its package DB to reference that directory
using the new `dynamic-library-dirs` field.

Note that this change is a no-op for older versions of GHC, i.e., they will
continue to fail on some packages as before.

Also note that this change causes the bootstrapped versions of GHC to be
recompiled, since they depend on `hscolour` which is built by
`generic-builder.nix`.

Tested by building the `stack` binary as described in #22810.


  Commit: 2caa7b88ae52caccac9c1b07c52af0080e9417c3
  
https://github.com/NixOS/nixpkgs/commit/2caa7b88ae52caccac9c1b07c52af0080e9417c3
  Author: Judah Jacobson 
  Date:   2017-05-05 (Fri, 05 May 2017)

  Changed paths:
M pkgs/development/haskell-modules/generic-builder.nix
M pkgs/development/haskell-modules/with-packages-wrapper.nix

  Log Message:
  ---
  Fix use of `isDarwin` conditionals.


  Commit: a1748f7b5ccae44501eb30e1e4e9fc2fa0bf
  
https://github.com/NixOS/nixpkgs/commit/a1748f7b5ccae44501eb30e1e4e9fc2fa0bf
  Author: Shea Levy 
  Date:   2017-05-05 (Fri, 05 May 2017)

  Changed paths:
M pkgs/development/haskell-modules/generic-builder.nix
M pkgs/development/haskell-modules/with-packages-wrapper.nix

  Log Message:
  ---
  Merge remote-tracking branch 'takt/sierra-haskell'


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


[Nix-commits] [NixOS/nixpkgs] 92ed6c: haskell: work around linker limits on Mac OS X Sie...

2017-05-05 Thread Judah Jacobson
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 92ed6cb2f2fc2e6408b3053cd66ec4e44059b27c
  
https://github.com/NixOS/nixpkgs/commit/92ed6cb2f2fc2e6408b3053cd66ec4e44059b27c
  Author: Judah Jacobson 
  Date:   2017-05-05 (Fri, 05 May 2017)

  Changed paths:
M pkgs/development/haskell-modules/generic-builder.nix
M pkgs/development/haskell-modules/with-packages-wrapper.nix

  Log Message:
  ---
  haskell: work around linker limits on Mac OS X Sierra.

The Sierra linker added a limit on the number of paths that any one
dynamic library (`*.dylib`) can reference.  This causes problems when
a Haskell library has many immediate dependencies (#22810).

We follow a similar fix as GHC/Cabal/Stack: for each derivation,
create a new directory with symlinks to all the dylibs of its immediate
dependencies, and patch its package DB to reference that directory
using the new `dynamic-library-dirs` field.

Note that this change is a no-op for older versions of GHC, i.e., they will
continue to fail on some packages as before.

Also note that this change causes the bootstrapped versions of GHC to be
recompiled, since they depend on `hscolour` which is built by
`generic-builder.nix`.

Tested by building the `stack` binary as described in #22810.

(cherry picked from commit 7131e06214560625cc85b89d93df3764d223a6e6)


  Commit: f2878422ca1d698fc497f9da19909d94d98c5f28
  
https://github.com/NixOS/nixpkgs/commit/f2878422ca1d698fc497f9da19909d94d98c5f28
  Author: Judah Jacobson 
  Date:   2017-05-05 (Fri, 05 May 2017)

  Changed paths:
M pkgs/development/haskell-modules/generic-builder.nix
M pkgs/development/haskell-modules/with-packages-wrapper.nix

  Log Message:
  ---
  Fix use of `isDarwin` conditionals.

(cherry picked from commit 2caa7b88ae52caccac9c1b07c52af0080e9417c3)


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


[Nix-dev] Build a derivation using sbt

2017-05-05 Thread Volth
Hello

Anyone tried to build a derivation using sbt ?
I found no one such project in nixpkgs.

sbt feels very bad running under "nixbld1", it needs to create ~/.sbt
~/.ivy and to download tons of jars there...
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-dev


[Nix-commits] [NixOS/nixpkgs] ef0663: libressl: 2.5.3 -> 2.5.4

2017-05-05 Thread Joachim Fasting
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: ef06638832a234bf06dcb1ec43e213aad2393000
  
https://github.com/NixOS/nixpkgs/commit/ef06638832a234bf06dcb1ec43e213aad2393000
  Author: Joachim Fasting 
  Date:   2017-05-05 (Fri, 05 May 2017)

  Changed paths:
M pkgs/development/libraries/libressl/2.5.nix

  Log Message:
  ---
  libressl: 2.5.3 -> 2.5.4

Contains a fix for CVE-2017-8301: TLS verification vulnerability in
LibreSSL 2.5.1 - 2.5.3 [1][2]

[1]: http://seclists.org/oss-sec/2017/q2/145
[2]: https://github.com/libressl-portable/portable/issues/307

(cherry picked from commit e2bc4e4bde72c92e915094b6f1d27e3e6300db15)


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


[Nix-commits] [NixOS/nixpkgs] 8d0305: mb2md: init at 3.20

2017-05-05 Thread Pascal Wittmann
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 8d03054f77a3fdee0803041df550e3bd3cdc0789
  
https://github.com/NixOS/nixpkgs/commit/8d03054f77a3fdee0803041df550e3bd3cdc0789
  Author: William Casarin 
  Date:   2017-05-05 (Fri, 05 May 2017)

  Changed paths:
A pkgs/tools/text/mb2md/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  mb2md: init at 3.20


  Commit: c15a17eb841c143b294ac9bc1370d8687470c365
  
https://github.com/NixOS/nixpkgs/commit/c15a17eb841c143b294ac9bc1370d8687470c365
  Author: Pascal Wittmann 
  Date:   2017-05-05 (Fri, 05 May 2017)

  Changed paths:
A pkgs/tools/text/mb2md/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  Merge pull request #25457 from jb55/mb2md

mb2md: init at 3.20


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


[Nix-commits] [NixOS/nixpkgs] f6dd52: pythonPackage.Pyro: use upstream name

2017-05-05 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: f6dd52cd6933e401cc79f4381ac6eaca98ec3f35
  
https://github.com/NixOS/nixpkgs/commit/f6dd52cd6933e401cc79f4381ac6eaca98ec3f35
  Author: Frederik Rietdijk 
  Date:   2017-05-05 (Fri, 05 May 2017)

  Changed paths:
M pkgs/tools/misc/openopc/default.nix
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  pythonPackage.Pyro: use upstream name


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


[Nix-commits] [NixOS/nixpkgs] 8678c0: aenum: 1.4.7 -> 2.0.3

2017-05-05 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 8678c0339d4595008c674cc4e7815bac35fbf477
  
https://github.com/NixOS/nixpkgs/commit/8678c0339d4595008c674cc4e7815bac35fbf477
  Author: Rahul Gopinath 
  Date:   2017-05-03 (Wed, 03 May 2017)

  Changed paths:
M pkgs/development/python-modules/aenum/default.nix

  Log Message:
  ---
  aenum: 1.4.7 -> 2.0.3


  Commit: 92d18827d40eef32fafa26d5d097059cd77c1e08
  
https://github.com/NixOS/nixpkgs/commit/92d18827d40eef32fafa26d5d097059cd77c1e08
  Author: Rahul Gopinath 
  Date:   2017-05-03 (Wed, 03 May 2017)

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

  Log Message:
  ---
  agate: 1.2.2 -> 1.6.0


  Commit: 390f67924fc9990197470458d4ff2955d13202dd
  
https://github.com/NixOS/nixpkgs/commit/390f67924fc9990197470458d4ff2955d13202dd
  Author: Rahul Gopinath 
  Date:   2017-05-03 (Wed, 03 May 2017)

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

  Log Message:
  ---
  agate-dbf: 0.1.0 -> 0.2.0


  Commit: fcd954181c54778390e951a46801139f9df169fd
  
https://github.com/NixOS/nixpkgs/commit/fcd954181c54778390e951a46801139f9df169fd
  Author: Rahul Gopinath 
  Date:   2017-05-03 (Wed, 03 May 2017)

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

  Log Message:
  ---
  agate-excel: 0.1.0 -> 0.2.1


  Commit: 36acb4ec3e7a6f93f26ae59e313f048db0335188
  
https://github.com/NixOS/nixpkgs/commit/36acb4ec3e7a6f93f26ae59e313f048db0335188
  Author: Rahul Gopinath 
  Date:   2017-05-03 (Wed, 03 May 2017)

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

  Log Message:
  ---
  agate-sql: Init at 0.5.2


  Commit: fddbb6b1ee99037077732789328a36254b3dd0d4
  
https://github.com/NixOS/nixpkgs/commit/fddbb6b1ee99037077732789328a36254b3dd0d4
  Author: Rahul Gopinath 
  Date:   2017-05-03 (Wed, 03 May 2017)

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

  Log Message:
  ---
  dbf: 0.94.003 -> 0.96.8


  Commit: 6040adc67400f792879de0833472cdcd73d94c94
  
https://github.com/NixOS/nixpkgs/commit/6040adc67400f792879de0833472cdcd73d94c94
  Author: Rahul Gopinath 
  Date:   2017-05-03 (Wed, 03 May 2017)

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

  Log Message:
  ---
  python-slugify: Init at 1.2.4


  Commit: 918773356d9a9c0923ddde97bdf1ca5de2453ba7
  
https://github.com/NixOS/nixpkgs/commit/918773356d9a9c0923ddde97bdf1ca5de2453ba7
  Author: Rahul Gopinath 
  Date:   2017-05-03 (Wed, 03 May 2017)

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

  Log Message:
  ---
  dbfread: Enable python3


  Commit: 9b5b713d8f525c400f7406ec35c2dac851975586
  
https://github.com/NixOS/nixpkgs/commit/9b5b713d8f525c400f7406ec35c2dac851975586
  Author: Rahul Gopinath 
  Date:   2017-05-03 (Wed, 03 May 2017)

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

  Log Message:
  ---
  csvkit: 0.9.1 -> 1.0.2


  Commit: 5d1c598655ef557ef3a6a7c79761aaaff9dabf45
  
https://github.com/NixOS/nixpkgs/commit/5d1c598655ef557ef3a6a7c79761aaaff9dabf45
  Author: Rahul Gopinath 
  Date:   2017-05-03 (Wed, 03 May 2017)

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

  Log Message:
  ---
  dateutil: remove 2_2


  Commit: d76e68423ff67200aba23ae38ceda61a23c983bf
  
https://github.com/NixOS/nixpkgs/commit/d76e68423ff67200aba23ae38ceda61a23c983bf
  Author: Rahul Gopinath 
  Date:   2017-05-03 (Wed, 03 May 2017)

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

  Log Message:
  ---
  openpyxl: remove 2_2_0_b1


  Commit: 4036bc91da25b31f846431ee6dce77b6f48d4c06
  
https://github.com/NixOS/nixpkgs/commit/4036bc91da25b31f846431ee6dce77b6f48d4c06
  Author: Rahul Gopinath 
  Date:   2017-05-03 (Wed, 03 May 2017)

  Changed paths:
A pkgs/development/python-modules/agate/default.nix
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  agate: refactor


  Commit: 90daf2de276b774c8da7e605f4dd7d90358e1824
  
https://github.com/NixOS/nixpkgs/commit/90daf2de276b774c8da7e605f4dd7d90358e1824
  Author: Rahul Gopinath 
  Date:   2017-05-03 (Wed, 03 May 2017)

  Changed paths:
A pkgs/development/python-modules/agate-dbf/default.nix
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  agate-dbf: refactor


  Commit: 4365d634c8ed6a37e898820cbc888194a96013e8
  
https://github.com/NixOS/nixpkgs/commit/4365d634c8ed6a37e898820cbc888194a96013e8
  Author: Rahul Gopinath 
  Date:   2017-05-03 (Wed, 03 May 2017)

  Changed paths:
A pkgs/development/python-modules/agate-excel/default.nix
M pkgs/top-level/python-packages.nix

  Log 

[Nix-commits] [NixOS/nixpkgs] f63eb5: pythonPackages.requests: point to requests2

2017-05-05 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: f63eb5857352705665411130d4f1638d55dd8c58
  
https://github.com/NixOS/nixpkgs/commit/f63eb5857352705665411130d4f1638d55dd8c58
  Author: Frederik Rietdijk 
  Date:   2017-05-05 (Fri, 05 May 2017)

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

  Log Message:
  ---
  pythonPackages.requests: point to requests2

The Python package has two packages for requests, `requests`
corresponding to version 1.2.3, and `requests2` corresponding to version
2.13.0. Version 1.2.3 is almost 4 years old, and by now all software
should have transitioned.

This commit aliases `requests` to `requests2`. Packages that stop to
function should be upgraded. In the rare case that that is not possible,
version 1.2.3 is still available as `requests_1` but I plan to drop
that before the release of 17.09.


  Commit: ef1149e8291a196d42ddb099f48952b241f936cd
  
https://github.com/NixOS/nixpkgs/commit/ef1149e8291a196d42ddb099f48952b241f936cd
  Author: Frederik Rietdijk 
  Date:   2017-05-05 (Fri, 05 May 2017)

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

  Log Message:
  ---
  pythonPackages.umemcache: mark as broken


Compare: https://github.com/NixOS/nixpkgs/compare/959695dd5faa...ef1149e8291a___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 959695: pythonPackages.grequests: 0.2.0 -> 0.3.0

2017-05-05 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 959695dd5faa3a43a5b366302e007e881c9e4c4b
  
https://github.com/NixOS/nixpkgs/commit/959695dd5faa3a43a5b366302e007e881c9e4c4b
  Author: Frederik Rietdijk 
  Date:   2017-05-05 (Fri, 05 May 2017)

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

  Log Message:
  ---
  pythonPackages.grequests: 0.2.0 -> 0.3.0


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


[Nix-commits] [NixOS/nixpkgs] e5d83e: gale: remove

2017-05-05 Thread Robin Gloster
  Branch: refs/heads/openssl-1.1
  Home:   https://github.com/NixOS/nixpkgs
  Commit: e5d83e2b02787a336b1b579e84c5da07d061b5f3
  
https://github.com/NixOS/nixpkgs/commit/e5d83e2b02787a336b1b579e84c5da07d061b5f3
  Author: Robin Gloster 
  Date:   2017-05-05 (Fri, 05 May 2017)

  Changed paths:
R pkgs/applications/networking/instant-messengers/gale/default.nix
R pkgs/applications/networking/instant-messengers/gale/gale-install.in.patch
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  gale: remove

unmaintained and doesn't build with recent openssl


  Commit: 49aa384c3e81e36398a647fc5534e38ea86b3436
  
https://github.com/NixOS/nixpkgs/commit/49aa384c3e81e36398a647fc5534e38ea86b3436
  Author: Robin Gloster 
  Date:   2017-05-05 (Fri, 05 May 2017)

  Changed paths:
R pkgs/applications/misc/vanitygen/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  vanitygen: remove

unmaintained and doesn't build with recent openssl


Compare: https://github.com/NixOS/nixpkgs/compare/c936bc835f10...49aa384c3e81___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] e2bc4e: libressl: 2.5.3 -> 2.5.4

2017-05-05 Thread Joachim F
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: e2bc4e4bde72c92e915094b6f1d27e3e6300db15
  
https://github.com/NixOS/nixpkgs/commit/e2bc4e4bde72c92e915094b6f1d27e3e6300db15
  Author: Joachim Fasting 
  Date:   2017-05-05 (Fri, 05 May 2017)

  Changed paths:
M pkgs/development/libraries/libressl/2.5.nix

  Log Message:
  ---
  libressl: 2.5.3 -> 2.5.4

Contains a fix for CVE-2017-8301: TLS verification vulnerability in
LibreSSL 2.5.1 - 2.5.3 [1][2]

[1]: http://seclists.org/oss-sec/2017/q2/145
[2]: https://github.com/libressl-portable/portable/issues/307


  Commit: ea929311bb5421bb77cd7c7da63be00737059e4b
  
https://github.com/NixOS/nixpkgs/commit/ea929311bb5421bb77cd7c7da63be00737059e4b
  Author: Joachim F 
  Date:   2017-05-05 (Fri, 05 May 2017)

  Changed paths:
M pkgs/development/libraries/libressl/2.5.nix

  Log Message:
  ---
  Merge pull request #25523 from joachifm/libressl-2_5_4

libressl: 2.5.3 -> 2.5.4


Compare: https://github.com/NixOS/nixpkgs/compare/4ff4f6e0384b...ea929311bb54___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] c936bc: httrack: 3.48.22 -> 3.49.1

2017-05-05 Thread Robin Gloster
  Branch: refs/heads/openssl-1.1
  Home:   https://github.com/NixOS/nixpkgs
  Commit: c936bc835f105fd6231c691c67595057b20483ef
  
https://github.com/NixOS/nixpkgs/commit/c936bc835f105fd6231c691c67595057b20483ef
  Author: Robin Gloster 
  Date:   2017-05-05 (Fri, 05 May 2017)

  Changed paths:
M pkgs/tools/backup/httrack/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  httrack: 3.48.22 -> 3.49.1

fixes openssl 1.1 compatibility


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


[Nix-commits] [NixOS/nixpkgs] dd2f2b: aircrack-ng: add unreleased patch for openssl 1.1

2017-05-05 Thread Robin Gloster
  Branch: refs/heads/openssl-1.1
  Home:   https://github.com/NixOS/nixpkgs
  Commit: dd2f2bca7c59a449de3d484453d4b5391f714a43
  
https://github.com/NixOS/nixpkgs/commit/dd2f2bca7c59a449de3d484453d4b5391f714a43
  Author: Robin Gloster 
  Date:   2017-05-05 (Fri, 05 May 2017)

  Changed paths:
M pkgs/tools/networking/aircrack-ng/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  aircrack-ng: add unreleased patch for openssl 1.1


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


[Nix-commits] [NixOS/nix] 465cb6: Figure out the user's home directory if $HOME is n...

2017-05-05 Thread Eelco Dolstra
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nix
  Commit: 465cb6824401541d82489e11b5223dbfd50bb132
  
https://github.com/NixOS/nix/commit/465cb6824401541d82489e11b5223dbfd50bb132
  Author: Eelco Dolstra 
  Date:   2017-05-05 (Fri, 05 May 2017)

  Changed paths:
M misc/launchd/org.nixos.nix-daemon.plist.in
M misc/systemd/nix-daemon.service.in
M src/libexpr/parser.y
A src/libutil/lazy.hh
M src/libutil/util.cc
M src/libutil/util.hh
M src/nix-channel/nix-channel.cc
M src/nix-env/nix-env.cc

  Log Message:
  ---
  Figure out the user's home directory if $HOME is not set


  Commit: bb50c8931934d04dbf61bd245b4583f8c1ac4fd9
  
https://github.com/NixOS/nix/commit/bb50c8931934d04dbf61bd245b4583f8c1ac4fd9
  Author: Eelco Dolstra 
  Date:   2017-05-05 (Fri, 05 May 2017)

  Changed paths:
M src/libstore/build.cc
M src/libstore/globals.hh
M src/libstore/machines.cc
M tests/build-remote.sh

  Log Message:
  ---
  Make the location of the build directory in the sandbox configurable

This is mostly for use in the sandbox tests, since if the Nix store is
under /build, then we can't use /build as the build directory.


Compare: https://github.com/NixOS/nix/compare/eba840c8a13b...bb50c8931934___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] bbdfa0: rust-bindgen: 0.23.0 -> 0.24.0

2017-05-05 Thread Pascal Wittmann
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: bbdfa06eb5b0bea96bb287eacfee5c720e4cade6
  
https://github.com/NixOS/nixpkgs/commit/bbdfa06eb5b0bea96bb287eacfee5c720e4cade6
  Author: Benjamin Saunders 
  Date:   2017-05-04 (Thu, 04 May 2017)

  Changed paths:
M pkgs/development/tools/rust/bindgen/default.nix

  Log Message:
  ---
  rust-bindgen: 0.23.0 -> 0.24.0

Fixes errors arising from unset LIBCLANG_PATH


  Commit: 4ff4f6e0384be49bbd429c56c102c6af69edb78d
  
https://github.com/NixOS/nixpkgs/commit/4ff4f6e0384be49bbd429c56c102c6af69edb78d
  Author: Pascal Wittmann 
  Date:   2017-05-05 (Fri, 05 May 2017)

  Changed paths:
M pkgs/development/tools/rust/bindgen/default.nix

  Log Message:
  ---
  Merge pull request #25522 from Ralith/rust-bindgen

rust-bindgen: 0.23.0 -> 0.24.0


Compare: https://github.com/NixOS/nixpkgs/compare/587ed894a429...4ff4f6e0384b___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


Re: [Nix-dev] Extend wrapper created with makeWrapper

2017-05-05 Thread Guillaume Maudoux (Layus)
Stackable wrappers are implemented in 
https://github.com/NixOS/nixpkgs/pull/24858, but you will need to wait 
for that package to land in master, and then get included in some 
channel :-).


You can also create a trivial wrapper derivation:

|# file ~/.nixpkgs/config.nix { pkgs, ...}: { packageOverrides = super: 
rec { customOkular = pkgs.writeScriptBin "okular" '' #!/usr/bin/env bash 
export MYVAR=something exec ${pkgs.okular}/bin/okular "$@" ''; ... |


and then nix-env -iA nixos.customOkular :-).

— Layus.

On 05/05/17 15:02, José Luis Lafuente wrote:


Hi,

I want to override an existing package to use it locally. I would like 
to just set an environment variable before the program is executed, 
but the derivation is using `wrapProgram`, so there is already a 
wrapper for the program. Is possible to override the derivation to add 
another environment variable to the wrapper? The derivation I want to 
modify is okular 
(https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/kde/okular.nix) 



Thanks in advance,
José Luis


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


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


[Nix-commits] [NixOS/hydra] 941665: /api/scmdiff: Set correct MIME type

2017-05-05 Thread Eelco Dolstra
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/hydra
  Commit: 941665044e8682ddcf70ab8a621948a2515c4a44
  
https://github.com/NixOS/hydra/commit/941665044e8682ddcf70ab8a621948a2515c4a44
  Author: Eelco Dolstra 
  Date:   2017-05-05 (Fri, 05 May 2017)

  Changed paths:
M src/lib/Hydra/Controller/API.pm

  Log Message:
  ---
  /api/scmdiff: Set correct MIME type

It was set to application/json but should be text/plain.


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


[Nix-commits] [NixOS/nixpkgs] c6385e: openmvg: init at v1.1

2017-05-05 Thread Michael Raskin
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: c6385eb0f58dc3ccb86a52dd35299c25e4061c4d
  
https://github.com/NixOS/nixpkgs/commit/c6385eb0f58dc3ccb86a52dd35299c25e4061c4d
  Author: Matthew Daiter 
  Date:   2017-05-05 (Fri, 05 May 2017)

  Changed paths:
A pkgs/applications/science/misc/openmvg/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  openmvg: init at v1.1


  Commit: 587ed894a4293ee7315079d8324d3fc1edfe8a81
  
https://github.com/NixOS/nixpkgs/commit/587ed894a4293ee7315079d8324d3fc1edfe8a81
  Author: Michael Raskin <7c6f4...@mail.ru>
  Date:   2017-05-05 (Fri, 05 May 2017)

  Changed paths:
A pkgs/applications/science/misc/openmvg/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  Merge pull request #25480 from mdaiter/openmvg

openmvg: init at v1.1


Compare: https://github.com/NixOS/nixpkgs/compare/af87b922f1af...587ed894a429___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-dev] Extend wrapper created with makeWrapper

2017-05-05 Thread José Luis Lafuente
Hi,

I want to override an existing package to use it locally. I would like to
just set an environment variable before the program is executed, but the
derivation is using `wrapProgram`, so there is already a wrapper for the
program. Is possible to override the derivation to add another environment
variable to the wrapper? The derivation I want to modify is okular (
https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/kde/okular.nix
)

Thanks in advance,
José Luis
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-dev


[Nix-commits] [NixOS/nixpkgs] af87b9: pythonPackages.plotly: 1.9.5 -> 2.0.8

2017-05-05 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: af87b922f1af3614ec338197b6193433a78840a0
  
https://github.com/NixOS/nixpkgs/commit/af87b922f1af3614ec338197b6193433a78840a0
  Author: Frederik Rietdijk 
  Date:   2017-05-05 (Fri, 05 May 2017)

  Changed paths:
A pkgs/development/python-modules/plotly/default.nix
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  pythonPackages.plotly: 1.9.5 -> 2.0.8


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


[Nix-commits] [NixOS/nixpkgs] 6ad804: environment: remove lib/kde4/libexec from PATH

2017-05-05 Thread Eelco Dolstra
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 6ad804324f61e196d7f5793c40c57ba4d209a452
  
https://github.com/NixOS/nixpkgs/commit/6ad804324f61e196d7f5793c40c57ba4d209a452
  Author: Jörg Thalheim 
  Date:   2017-05-05 (Fri, 05 May 2017)

  Changed paths:
M nixos/modules/programs/environment.nix

  Log Message:
  ---
  environment: remove lib/kde4/libexec from PATH

kde4 is gone and does need to be in $PATH anymore by default


  Commit: ac9eb4e34f8c8ec72f6501cba54d03be99b32c43
  
https://github.com/NixOS/nixpkgs/commit/ac9eb4e34f8c8ec72f6501cba54d03be99b32c43
  Author: Eelco Dolstra 
  Date:   2017-05-05 (Fri, 05 May 2017)

  Changed paths:
M nixos/modules/programs/environment.nix

  Log Message:
  ---
  Merge pull request #25524 from Mic92/env

environment: remove lib/kde4/libexec from PATH


Compare: https://github.com/NixOS/nixpkgs/compare/8b6ea100ce2d...ac9eb4e34f8c___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixops] 1c78a4: Adding the ability to set a service account to be ...

2017-05-05 Thread Rob Vermaas
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixops
  Commit: 1c78a4db34e9adb8768d77a67bf04e36c20bc12c
  
https://github.com/NixOS/nixops/commit/1c78a4db34e9adb8768d77a67bf04e36c20bc12c
  Author: Amine Chikhaoui 
  Date:   2017-04-07 (Fri, 07 Apr 2017)

  Changed paths:
M nix/gce.nix
M nixops/backends/gce.py

  Log Message:
  ---
  Adding the ability to set a service account to be passed to the instance 
either
during the creation or when the instance is already launched (which requires a
reboot).
Possibly fixing #465 as the instance doesn't start after a change that requires
an --allow-reboot.


  Commit: db36cb702f3691c2abc9318dbb29af628680fca8
  
https://github.com/NixOS/nixops/commit/db36cb702f3691c2abc9318dbb29af628680fca8
  Author: Rob Vermaas 
  Date:   2017-05-05 (Fri, 05 May 2017)

  Changed paths:
M nix/gce.nix
M nixops/backends/gce.py

  Log Message:
  ---
  Merge pull request #642 from AmineChikhaoui/gce-service-account

Adding the ability to pass/modify a service account in a GCE instance


Compare: https://github.com/NixOS/nixops/compare/c28a4f7acedb...db36cb702f36___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 977b32: wordpress: replace the dbPassword option with dbPa...

2017-05-05 Thread Bas van Dijk
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 977b320d5d27d253efedc55a56e96149b6ae1099
  
https://github.com/NixOS/nixpkgs/commit/977b320d5d27d253efedc55a56e96149b6ae1099
  Author: Bas van Dijk 
  Date:   2017-05-05 (Fri, 05 May 2017)

  Changed paths:
M nixos/modules/services/web-servers/apache-httpd/wordpress.nix

  Log Message:
  ---
  wordpress: replace the dbPassword option with dbPasswordFile

We shouldn't force users to store passwords in the world-readable Nix store.


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


[Nix-commits] [NixOS/nixpkgs] 8b6ea1: vscode: 1.11.2 -> 1.12.1

2017-05-05 Thread Gabriel Ebner
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 8b6ea100ce2d0f2a4389040f111a74f484ea6bc8
  
https://github.com/NixOS/nixpkgs/commit/8b6ea100ce2d0f2a4389040f111a74f484ea6bc8
  Author: Gabriel Ebner 
  Date:   2017-05-05 (Fri, 05 May 2017)

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

  Log Message:
  ---
  vscode: 1.11.2 -> 1.12.1


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


[Nix-commits] [NixOS/nixpkgs] 87723d: pythonPackages.mplleaflet: init at 0.0.5

2017-05-05 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 87723d5ac3c935b0b5139283db09c0e261903941
  
https://github.com/NixOS/nixpkgs/commit/87723d5ac3c935b0b5139283db09c0e261903941
  Author: Frederik Rietdijk 
  Date:   2017-05-05 (Fri, 05 May 2017)

  Changed paths:
A pkgs/development/python-modules/mplleaflet/default.nix
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  pythonPackages.mplleaflet: init at 0.0.5


  Commit: f4b5950d8cebd2a1d3ffe8d5f28fe18d4e4b5c0b
  
https://github.com/NixOS/nixpkgs/commit/f4b5950d8cebd2a1d3ffe8d5f28fe18d4e4b5c0b
  Author: Frederik Rietdijk 
  Date:   2017-05-05 (Fri, 05 May 2017)

  Changed paths:
A pkgs/development/python-modules/bibtexparser/default.nix
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  pythonPackages.bibtexparser: init at 0.6.2


Compare: https://github.com/NixOS/nixpkgs/compare/0a218a9f3a36...f4b5950d8ceb___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 5ed9d8: mozjpeg: 3.1 -> 3.2

2017-05-05 Thread Michael Raskin
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 5ed9d8df865574256c17f3f2b07f8332663211b5
  
https://github.com/NixOS/nixpkgs/commit/5ed9d8df865574256c17f3f2b07f8332663211b5
  Author: Vinh Le 
  Date:   2017-05-05 (Fri, 05 May 2017)

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

  Log Message:
  ---
  mozjpeg: 3.1 -> 3.2


  Commit: 0a218a9f3a360dcfd8052ab8492d55d2f9636f0a
  
https://github.com/NixOS/nixpkgs/commit/0a218a9f3a360dcfd8052ab8492d55d2f9636f0a
  Author: Michael Raskin <7c6f4...@mail.ru>
  Date:   2017-05-05 (Fri, 05 May 2017)

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

  Log Message:
  ---
  Merge pull request #25520 from vinhlh/mozjpeg-3.2

mozjpeg: 3.1 -> 3.2


Compare: https://github.com/NixOS/nixpkgs/compare/96c0a6db3aeb...0a218a9f3a36___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 96c0a6: pythonPackages.phpserialize: init at 1.3 (#25521)

2017-05-05 Thread Jaakko Luttinen
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 96c0a6db3aeb08b71a670170298bb0913937f4fe
  
https://github.com/NixOS/nixpkgs/commit/96c0a6db3aeb08b71a670170298bb0913937f4fe
  Author: Jaakko Luttinen 
  Date:   2017-05-05 (Fri, 05 May 2017)

  Changed paths:
M lib/maintainers.nix
A pkgs/development/python-modules/phpserialize/default.nix
M pkgs/top-level/python-packages.nix

  Log Message:
  ---
  pythonPackages.phpserialize: init at 1.3 (#25521)

* pythonPackages.phpserialize: init at 1.3

* pythonPackages.phpserialize: clarify test situation


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


[Nix-commits] [NixOS/nixpkgs] ce4ff6: lib/tests.nix: add section headers

2017-05-05 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: ce4ff6b4f453addb2403b20ad386702ff131eab9
  
https://github.com/NixOS/nixpkgs/commit/ce4ff6b4f453addb2403b20ad386702ff131eab9
  Author: Profpatsch 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M lib/tests.nix

  Log Message:
  ---
  lib/tests.nix: add section headers


  Commit: 46a36d82eea3679176d77399cc292e5877eea50a
  
https://github.com/NixOS/nixpkgs/commit/46a36d82eea3679176d77399cc292e5877eea50a
  Author: Profpatsch 
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
M lib/trivial.nix

  Log Message:
  ---
  lib/trivial.nix: add type for fix


  Commit: 948488343b2a6dd7b7c84037f3f6549c0cce9562
  
https://github.com/NixOS/nixpkgs/commit/948488343b2a6dd7b7c84037f3f6549c0cce9562
  Author: Jörg Thalheim 
  Date:   2017-05-05 (Fri, 05 May 2017)

  Changed paths:
M lib/tests.nix
M lib/trivial.nix

  Log Message:
  ---
  Merge pull request #24835 from Profpatsch/lib-doc-improvements

Lib doc improvements


Compare: https://github.com/NixOS/nixpkgs/compare/17d2ff414d83...948488343b2a___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 17d2ff: imagej: init at 150 (#25249)

2017-05-05 Thread Yuri Aisaka
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 17d2ff414d83095361c2070f1cdaf57c016af9c7
  
https://github.com/NixOS/nixpkgs/commit/17d2ff414d83095361c2070f1cdaf57c016af9c7
  Author: Yuri Aisaka 
  Date:   2017-05-05 (Fri, 05 May 2017)

  Changed paths:
M lib/maintainers.nix
A pkgs/applications/graphics/imagej/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  imagej: init at 150 (#25249)

* imagej: init at 150

* correcting for PR comments


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