Re: [Nix-dev] canon printer drivers (cnijfilter)

2017-07-01 Thread Matt McHenry
I finally figured it out!  The missing magic was 'dontPatchELF =
true'.  I've seen a CUPS test page come out, and have opened a PR:
https://github.com/NixOS/nixpkgs/pull/27031.  Thanks for renewing my
motivation, Nawal!  :)

On Thu, Jun 22, 2017 at 2:55 AM, Nawal Husnoo  wrote:
> Sample code from my attempts might help:
>
> mkdir -p $out/
> cp -r $src/* $out/
>
>
> chmod 777 -R $out/*
>
>
> patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
> --set-rpath $libPath:$out/lib \
> $out/bin/cnijnpr
>
> ln -sv $out/lib/libcnbpcmcm356.so.8.0.1 $out/lib/libcnbpcmcm356.so
>
> LIBTIFF=$(pkg-config --libs-only-L libtiff-4 | sed -e
> 's/-L//g')/libtiff.so.5
> ln -s $LIBTIFF $out/lib/libtiff.so.4
>
> ldd $out/lib/cups/filter/pstocanonij
>
>
> The latter looks inside the binary and tries to link it (dynamically) - it
> should show what's still missing. The tiff business just makes tiff
> available to the canon driver.
>
>
> The rpath bit in the patchelf command is probably what you're looking for
> initially.
>
> hth
>
> Nawal
>
>
>
>
>
>
>
>
>
> On 22 Jun 2017 03:24, "Matt McHenry"  wrote:
>>
>> Okay, patchelf seemed promising.  I just pushed
>> https://github.com/jerith666/nixpkgs/commit/237a52ca24026f2e4d8a5543eb7aa98f610f642c
>> to add it to my expression.  However, it doesn't seem to have helped.  :-(
>>
>> Looking at the source code, the "Error: CNCL_SetParam" is coming from
>> ./cnijfilter/src/bjfilter.c line 661.  The CNCL_SetParam() function is not
>> defined in any of the provided source code, though -- rather, it looks like
>> it's in ./328/libs_bin/libcnbpcnclapi328.so.3.3.0.
>>
>> I have a gdb trace laying around from last time I worked on this, and it
>> has this stack trace:
>>
>> Catchpoint 1 (call to syscall open), 0xf7fd8da9 in __kernel_vsyscall ()
>> eax is -38
>> (gdb) where
>> #0  0xf7fd8da9 in __kernel_vsyscall ()
>> #1  0xf7d65f23 in __open_nocancel () from
>> /nix/store/bgmm5m6q04fl5myf831c73l1xmbl38xw-glibc-2.24/lib/libc.so.6
>> #2  0xf7cf9fd6 in __GI__IO_file_open () from
>> /nix/store/bgmm5m6q04fl5myf831c73l1xmbl38xw-glibc-2.24/lib/libc.so.6
>> #3  0xf7cfa1d1 in __GI__IO_file_fopen () from
>> /nix/store/bgmm5m6q04fl5myf831c73l1xmbl38xw-glibc-2.24/lib/libc.so.6
>> #4  0xf7cedd31 in __fopen_internal () from
>> /nix/store/bgmm5m6q04fl5myf831c73l1xmbl38xw-glibc-2.24/lib/libc.so.6
>> #5  0xf7cedd9e in fopen@@GLIBC_2.1 () from
>> /nix/store/bgmm5m6q04fl5myf831c73l1xmbl38xw-glibc-2.24/lib/libc.so.6
>> #6  0xf7fd1b08 in BJVSOpenFile () from
>> /nix/store/9ci3apl3d8spw0zdp202cwr325n8hz28-cnijfilter-2.80/lib/libcnbpcmcm328.so
>> #7  0xf7fcafa3 in CommandComp2Ext_Open () from
>> /nix/store/9ci3apl3d8spw0zdp202cwr325n8hz28-cnijfilter-2.80/lib/libcnbpcmcm328.so
>> #8  0xf7fce059 in CommandComp2 () from
>> /nix/store/9ci3apl3d8spw0zdp202cwr325n8hz28-cnijfilter-2.80/lib/libcnbpcmcm328.so
>> #9  0xf7e60d4d in CNCL_SetParam () from
>> /nix/store/9ci3apl3d8spw0zdp202cwr325n8hz28-cnijfilter-2.80/lib/libcnbpcnclapi328.so
>> #10 0x0804b3c8 in main ()
>>
>> I think this means that it's trying to open some file and failing.  My
>> *guess* is that it's trying to open one of these files, but doesn't have the
>> proper nix store path:
>>
>> $ file
>> /nix/store/g1gdd81qh6dskjalg6icg56yw74rb03b-cnijfilter-2.80/lib/bjlib/*
>>
>> /nix/store/g1gdd81qh6dskjalg6icg56yw74rb03b-cnijfilter-2.80/lib/bjlib/cifip3500.conf:
>> ASCII text
>>
>> /nix/store/g1gdd81qh6dskjalg6icg56yw74rb03b-cnijfilter-2.80/lib/bjlib/cifip4500.conf:
>> ASCII text
>>
>> /nix/store/g1gdd81qh6dskjalg6icg56yw74rb03b-cnijfilter-2.80/lib/bjlib/cifmp140.conf:
>> ASCII text
>>
>> /nix/store/g1gdd81qh6dskjalg6icg56yw74rb03b-cnijfilter-2.80/lib/bjlib/cifmp210.conf:
>> ASCII text
>>
>> /nix/store/g1gdd81qh6dskjalg6icg56yw74rb03b-cnijfilter-2.80/lib/bjlib/cifmp520.conf:
>> ASCII text
>>
>> /nix/store/g1gdd81qh6dskjalg6icg56yw74rb03b-cnijfilter-2.80/lib/bjlib/cifmp610.conf:
>> ASCII text
>>
>> /nix/store/g1gdd81qh6dskjalg6icg56yw74rb03b-cnijfilter-2.80/lib/bjlib/cnb_3150.tbl:
>> TrueType font data
>>
>> /nix/store/g1gdd81qh6dskjalg6icg56yw74rb03b-cnijfilter-2.80/lib/bjlib/cnb_3160.tbl:
>> TrueType font data
>>
>> /nix/store/g1gdd81qh6dskjalg6icg56yw74rb03b-cnijfilter-2.80/lib/bjlib/cnb_3190.tbl:
>> TrueType font data
>>
>> /nix/store/g1gdd81qh6dskjalg6icg56yw74rb03b-cnijfilter-2.80/lib/bjlib/cnb_3260.tbl:
>> TrueType font data
>>
>> /nix/store/g1gdd81qh6dskjalg6icg56yw74rb03b-cnijfilter-2.80/lib/bjlib/cnb_3270.tbl:
>> TrueType font data
>>
>> /nix/store/g1gdd81qh6dskjalg6icg56yw74rb03b-cnijfilter-2.80/lib/bjlib/cnb_3280.tbl:
>> TrueType font data
>>
>> /nix/store/g1gdd81qh6dskjalg6icg56yw74rb03b-cnijfilter-2.80/lib/bjlib/cnbpname315.tbl:
>> TrueType font data
>>
>> /nix/store/g1gdd81qh6dskjalg6icg56yw74rb03b-cnijfilter-2.80/lib/bjlib/cnbpname316.tbl:
>> TrueType font data
>>
>> /nix/store/g1gdd81qh6dskjalg6icg56yw74rb03b-cnijfilter-2.80/lib/bjlib/cnbpname319.tbl:
>> TrueType font data
>>
>> /nix/store/g1gdd81qh6dskjalg6icg56yw74rb03b-cnijfil

[Nix-commits] [NixOS/nixpkgs] 756e69: syncthing: don't import from pkgs (#27029)

2017-07-01 Thread volth
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 756e69bf97c5170408b9511d57c04f4c772c458d
  
https://github.com/NixOS/nixpkgs/commit/756e69bf97c5170408b9511d57c04f4c772c458d
  Author: volth 
  Date:   2017-07-02 (Sun, 02 Jul 2017)

  Changed paths:
M pkgs/applications/networking/syncthing/default.nix

  Log Message:
  ---
  syncthing: don't import from pkgs (#27029)


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


[Nix-commits] [NixOS/nixpkgs] 5c45f3: pythonPackages.intervaltree: fix evaluation

2017-07-01 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 5c45f341f168c722277bf0bf5330caff8b1bf7cd
  
https://github.com/NixOS/nixpkgs/commit/5c45f341f168c722277bf0bf5330caff8b1bf7cd
  Author: Jörg Thalheim 
  Date:   2017-07-02 (Sun, 02 Jul 2017)

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

  Log Message:
  ---
  pythonPackages.intervaltree: fix evaluation


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


[Nix-commits] [NixOS/nixpkgs] b1d79f: ranger: fix absolute paths in scope.sh

2017-07-01 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: b1d79f0ef39faffee5ade67e806c22c048d4aa77
  
https://github.com/NixOS/nixpkgs/commit/b1d79f0ef39faffee5ade67e806c22c048d4aa77
  Author: Bart Brouns 
  Date:   2017-07-02 (Sun, 02 Jul 2017)

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

  Log Message:
  ---
  ranger: fix absolute paths in scope.sh


  Commit: d2d62e43a0daa48af529c8c2b3e486acccdf93de
  
https://github.com/NixOS/nixpkgs/commit/d2d62e43a0daa48af529c8c2b3e486acccdf93de
  Author: Jörg Thalheim 
  Date:   2017-07-02 (Sun, 02 Jul 2017)

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

  Log Message:
  ---
  Merge pull request #27028 from magnetophon/ranger

ranger: fix absolute paths in scope.sh


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


[Nix-commits] [NixOS/nixpkgs] c440ba: exiftool: 10.48 -> 10.55

2017-07-01 Thread dywedir
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: c440bacea3fab588e8e01309511e1e469ba8afa2
  
https://github.com/NixOS/nixpkgs/commit/c440bacea3fab588e8e01309511e1e469ba8afa2
  Author: dywedir 
  Date:   2017-07-02 (Sun, 02 Jul 2017)

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

  Log Message:
  ---
  exiftool: 10.48 -> 10.55


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


[Nix-commits] [NixOS/nixpkgs] b16ed1: python-pwntools: 3.1 -> 3.7 (including dependencie...

2017-07-01 Thread Benno Fünfstück
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: b16ed16c997248af5be5080134566fd3d741c939
  
https://github.com/NixOS/nixpkgs/commit/b16ed16c997248af5be5080134566fd3d741c939
  Author: Benno Fünfstück 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

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

  Log Message:
  ---
  python-pwntools: 3.1 -> 3.7 (including dependencies)


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


[Nix-commits] [NixOS/nixpkgs] f44229: libreoffice: remove spadmin wrapper

2017-07-01 Thread Michael Raskin
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: f442294719f8074177de4ceb14d62e36081451d6
  
https://github.com/NixOS/nixpkgs/commit/f442294719f8074177de4ceb14d62e36081451d6
  Author: Emmanuel Rosa 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

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

  Log Message:
  ---
  libreoffice: remove spadmin wrapper

This change removes the spadmin wrapper because the utility was removed from 
LibreOffice in release 4.3. See 
https://wiki.documentfoundation.org/ReleaseNotes/4.3#CUPS.2C_fax_machines_and_spadmin
 which states:

 > The graphical utility spadmin is now removed in favor of these new features 
 > and the operating system's standard printer administration tools. (Caolán 
 > McNamara)

 Closes #26671


  Commit: 26f47d1431353ccea06636525f206cd8c5ea3782
  
https://github.com/NixOS/nixpkgs/commit/26f47d1431353ccea06636525f206cd8c5ea3782
  Author: Michael Raskin <7c6f4...@mail.ru>
  Date:   2017-07-01 (Sat, 01 Jul 2017)

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

  Log Message:
  ---
  Merge pull request #27023 from emmanuelrosa/spadmin

libreoffice: remove spadmin wrapper


Compare: https://github.com/NixOS/nixpkgs/compare/80c2c5867116...26f47d143135___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 6e36e7: gede: replace build.patch with inline sed call

2017-07-01 Thread Joachim Fasting
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 6e36e7f209e9177a4f73cb7576ebb546607fe052
  
https://github.com/NixOS/nixpkgs/commit/6e36e7f209e9177a4f73cb7576ebb546607fe052
  Author: Joachim Fasting 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
R pkgs/development/tools/misc/gede/build.patch
M pkgs/development/tools/misc/gede/default.nix

  Log Message:
  ---
  gede: replace build.patch with inline sed call

The patch file is much larger than the logical change made.


  Commit: 4f320d30a420071c5e79314a4fba682862eaa335
  
https://github.com/NixOS/nixpkgs/commit/4f320d30a420071c5e79314a4fba682862eaa335
  Author: Joachim Fasting 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/development/tools/misc/gede/default.nix

  Log Message:
  ---
  gede: fix sandboxed build

build.py relies on /usr/bin/env; invoke python directly instead to
sidestep the issue.


  Commit: 0040dbaf692ec18f1323db6abe577cf5983a6971
  
https://github.com/NixOS/nixpkgs/commit/0040dbaf692ec18f1323db6abe577cf5983a6971
  Author: Joachim Fasting 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/development/tools/misc/gede/default.nix

  Log Message:
  ---
  gede: add ctags and gdb to path via wrapper


  Commit: 80c2c586711609eb791063fca384d54699b97a0e
  
https://github.com/NixOS/nixpkgs/commit/80c2c586711609eb791063fca384d54699b97a0e
  Author: Joachim Fasting 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/development/tools/misc/gede/default.nix

  Log Message:
  ---
  gede: 2.0.3 -> 2.0.4


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


[Nix-commits] [NixOS/nixpkgs] 2f1c67: collectd: fix configureFlags and place jars to $ou...

2017-07-01 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 2f1c67746c9239320e0bb55882c5d1ef2535392c
  
https://github.com/NixOS/nixpkgs/commit/2f1c67746c9239320e0bb55882c5d1ef2535392c
  Author: Volth 
  Date:   2017-06-30 (Fri, 30 Jun 2017)

  Changed paths:
M pkgs/tools/system/collectd/default.nix

  Log Message:
  ---
  collectd: fix configureFlags and place jars to $out/share/java


  Commit: b1ae3131114d470a18884b45e753b866f0a079ec
  
https://github.com/NixOS/nixpkgs/commit/b1ae3131114d470a18884b45e753b866f0a079ec
  Author: Jörg Thalheim 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/tools/system/collectd/default.nix

  Log Message:
  ---
  Merge pull request #26998 from volth/collectd-configure-flags

collectd: fix configureFlags and jar location


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


[Nix-commits] [NixOS/nixpkgs] 712d26: runit: disable uid check during install

2017-07-01 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 712d26d437597ed199ef591f3712106f11e846a9
  
https://github.com/NixOS/nixpkgs/commit/712d26d437597ed199ef591f3712106f11e846a9
  Author: Jörg Thalheim 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/tools/system/runit/default.nix

  Log Message:
  ---
  runit: disable uid check during install


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


[Nix-commits] [NixOS/nixpkgs] 36021d: i3lock: 2.8 -> 2.9.1

2017-07-01 Thread Benno Fünfstück
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 36021ddaaf6d1cefefe0647a55f0889d1ba0fadd
  
https://github.com/NixOS/nixpkgs/commit/36021ddaaf6d1cefefe0647a55f0889d1ba0fadd
  Author: Johannes Frankenau 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/applications/window-managers/i3/lock.nix

  Log Message:
  ---
  i3lock: 2.8 -> 2.9.1


  Commit: 13c8c847f42a5b0328ff0305351151cc0d65ab6e
  
https://github.com/NixOS/nixpkgs/commit/13c8c847f42a5b0328ff0305351151cc0d65ab6e
  Author: Benno Fünfstück 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/applications/window-managers/i3/lock.nix

  Log Message:
  ---
  Merge pull request #27007 from jfrankenau/update-i3lock

i3lock: 2.8 -> 2.9.1


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


[Nix-commits] [NixOS/nixpkgs] dd4c1e: i3: add `configFile` to enable cutom configuration...

2017-07-01 Thread Benno Fünfstück
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: dd4c1e2b019a31ee7362f0d9a042f13e1038f008
  
https://github.com/NixOS/nixpkgs/commit/dd4c1e2b019a31ee7362f0d9a042f13e1038f008
  Author: Maximilian Bosch 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/applications/window-managers/i3/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  i3: add `configFile` to enable cutom configuration locations

i3 loads its configuration from `~/.config/i3`, but in nix-based systems
you might want to build the config in `~/.nix-profile` using a nix
derivation, so `i3` needs to know where to look for the configuration
file.


  Commit: be4fc9ec1fb5a407f9a7a028c9a7ee235bb80601
  
https://github.com/NixOS/nixpkgs/commit/be4fc9ec1fb5a407f9a7a028c9a7ee235bb80601
  Author: Benno Fünfstück 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/applications/window-managers/i3/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  Merge pull request #26983 from Ma27/i3/allow-custom-configuration

i3: add `configFile` to enable cutom configuration locations


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


[Nix-commits] [NixOS/nixpkgs] 36b1d1: ccache: 3.2.5 -> 3.3.4

2017-07-01 Thread Jörg Thalheim
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 36b1d11188dd935a1a24e53df9eb454273562225
  
https://github.com/NixOS/nixpkgs/commit/36b1d11188dd935a1a24e53df9eb454273562225
  Author: Jörg Thalheim 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/development/tools/misc/ccache/default.nix
A pkgs/development/tools/misc/ccache/skip-fs-dependent-test.patch

  Log Message:
  ---
  ccache: 3.2.5 -> 3.3.4


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


[Nix-commits] [NixOS/nixpkgs] f075c0: gen-oath-safe: init at 2017-01-23

2017-07-01 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: f075c0c9fa76cf334e32ca9e8d41ec9827f621af
  
https://github.com/NixOS/nixpkgs/commit/f075c0c9fa76cf334e32ca9e8d41ec9827f621af
  Author: makefu 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
A pkgs/tools/security/gen-oath-safe/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  gen-oath-safe: init at 2017-01-23


  Commit: a20dbcb88b7aa125e6da481405395083784e1c00
  
https://github.com/NixOS/nixpkgs/commit/a20dbcb88b7aa125e6da481405395083784e1c00
  Author: Frederik Rietdijk 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
A pkgs/tools/security/gen-oath-safe/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  Merge pull request #27002 from makefu/pkgs/gen-oath-safe/init

gen-oath-safe: init at 2017-01-23


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


[Nix-commits] [NixOS/nixpkgs] 6f86a1: Terraform 0.9.10 (#27003)

2017-07-01 Thread zimbatm
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 6f86a1bd09116a6ad5a07ba040f6d9ddc5caa21e
  
https://github.com/NixOS/nixpkgs/commit/6f86a1bd09116a6ad5a07ba040f6d9ddc5caa21e
  Author: zimbatm 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/applications/networking/cluster/terraform/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  Terraform 0.9.10 (#27003)

* terraform: remove old 0.9.x versions

* terraform: 0.9.9 -> 0.9.10


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


[Nix-commits] [NixOS/nixpkgs] 6eb2d7: ocamlPackages.decompress: init at 0.6

2017-07-01 Thread Vincent Laporte
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 6eb2d7d44b4cd68af3afd3549dc68c740927de69
  
https://github.com/NixOS/nixpkgs/commit/6eb2d7d44b4cd68af3afd3549dc68c740927de69
  Author: Vincent Laporte 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

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

  Log Message:
  ---
  ocamlPackages.decompress: init at 0.6

decompress is a pure OCaml implementation of Zlib.

Homepage: https://github.com/mirage/decompress


  Commit: 6a0f4f69e1c89fd812e5b37bc25438b1b6ba6160
  
https://github.com/NixOS/nixpkgs/commit/6a0f4f69e1c89fd812e5b37bc25438b1b6ba6160
  Author: Vincent Laporte 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

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

  Log Message:
  ---
  ocamlPackages.git: init at 1.11.0

Git format and protocol in pure OCaml

Homepage: https://github.com/mirage/ocaml-git


Compare: https://github.com/NixOS/nixpkgs/compare/982af09d2c87...6a0f4f69e1c8___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 982af0: perl522: fix build on Darwin

2017-07-01 Thread Vincent Laporte
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 982af09d2c87d186539f1fd500996277c6b85472
  
https://github.com/NixOS/nixpkgs/commit/982af09d2c87d186539f1fd500996277c6b85472
  Author: Vincent Laporte 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/development/interpreters/perl/default.nix

  Log Message:
  ---
  perl522: fix build on Darwin

The sw_vers patch only applies to version 5.24


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


[Nix-commits] [NixOS/nixpkgs] 8fd364: ocamlPackages.jsonm: 1.0.0 -> 1.0.1

2017-07-01 Thread Vincent Laporte
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 8fd3645e1b806cf89d705208e45acd8d7a215a82
  
https://github.com/NixOS/nixpkgs/commit/8fd3645e1b806cf89d705208e45acd8d7a215a82
  Author: Vincent Laporte 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/development/ocaml-modules/jsonm/default.nix

  Log Message:
  ---
  ocamlPackages.jsonm: 1.0.0 -> 1.0.1


  Commit: 352d487101eded14fd4f592f4d4909017187f0d6
  
https://github.com/NixOS/nixpkgs/commit/352d487101eded14fd4f592f4d4909017187f0d6
  Author: Vincent Laporte 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/development/ocaml-modules/conduit/default.nix

  Log Message:
  ---
  ocamlPackages.conduit: 0.8.3 -> 0.10.0


  Commit: fe9147a042f83b7700da92f0680cfb7438997ac3
  
https://github.com/NixOS/nixpkgs/commit/fe9147a042f83b7700da92f0680cfb7438997ac3
  Author: Vincent Laporte 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
A pkgs/development/ocaml-modules/conduit/0.10.0.nix
M pkgs/development/ocaml-modules/conduit/default.nix
M pkgs/top-level/ocaml-packages.nix

  Log Message:
  ---
  ocamlPackages.conduit: 0.10.0 -> 0.15.4

Keeping the old version under attribute conduit_p4.


  Commit: 6875115b8e0ab94a00bc3c6f4c37857effcf6055
  
https://github.com/NixOS/nixpkgs/commit/6875115b8e0ab94a00bc3c6f4c37857effcf6055
  Author: Vincent Laporte 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
A pkgs/development/ocaml-modules/cohttp/0.19.3.nix
M pkgs/development/ocaml-modules/cohttp/default.nix
M pkgs/top-level/ocaml-packages.nix

  Log Message:
  ---
  ocamlPackages.cohttp: 0.19.3 -> 0.22.0

Keeping the old version under attribute cohttp_p4


  Commit: 4338ddd0f95fef1dffb1342651d49a4a0b60a8dc
  
https://github.com/NixOS/nixpkgs/commit/4338ddd0f95fef1dffb1342651d49a4a0b60a8dc
  Author: Vincent Laporte 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

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

  Log Message:
  ---
  ocamlPackages.mstruct: init at 1.3.3

Mstruct is a thin mutable layer on top of cstruct

Homepage: https://github.com/mirage/ocaml-mstruct


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


[Nix-commits] [NixOS/nixpkgs] c5ff68: lumina: 1.2.0-p1 -> 1.3.0

2017-07-01 Thread Joachim F
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: c5ff68b3c28effb17e686d9d8d2bac1ec6577a1b
  
https://github.com/NixOS/nixpkgs/commit/c5ff68b3c28effb17e686d9d8d2bac1ec6577a1b
  Author: romildo 
  Date:   2017-06-29 (Thu, 29 Jun 2017)

  Changed paths:
M nixos/modules/services/x11/desktop-managers/lumina.nix
M pkgs/desktops/lumina/default.nix

  Log Message:
  ---
  lumina: 1.2.0-p1 -> 1.3.0

- Update to version 1.3.0

- Remove dependency on `oxygen-icons5`, as Lumina desktop now distributes
it’s own "material-design-[light/dark]" icon themes and uses them as the
default icon sets.


  Commit: 4e548d2717ed9ba0aa005d00922bf4dbaeee9a8e
  
https://github.com/NixOS/nixpkgs/commit/4e548d2717ed9ba0aa005d00922bf4dbaeee9a8e
  Author: Joachim F 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M nixos/modules/services/x11/desktop-managers/lumina.nix
M pkgs/desktops/lumina/default.nix

  Log Message:
  ---
  Merge pull request #26964 from romildo/upd.lumina

lumina: 1.2.0-p1 -> 1.3.0


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


[Nix-commits] [NixOS/nixpkgs] c4d59d: emacs-all-the-icons-fonts: 2.50 -> 2.6.4

2017-07-01 Thread Joachim F
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: c4d59d886d3cfa4be8c908e77c1ce0fe23ed1312
  
https://github.com/NixOS/nixpkgs/commit/c4d59d886d3cfa4be8c908e77c1ce0fe23ed1312
  Author: tjikini 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/data/fonts/emacs-all-the-icons-fonts/default.nix

  Log Message:
  ---
  emacs-all-the-icons-fonts: 2.50 -> 2.6.4


  Commit: 07aca910d57f148ee991c47f3801eb8a3a841959
  
https://github.com/NixOS/nixpkgs/commit/07aca910d57f148ee991c47f3801eb8a3a841959
  Author: Joachim F 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/data/fonts/emacs-all-the-icons-fonts/default.nix

  Log Message:
  ---
  Merge pull request #27008 from tjikini/emacs-all-the-icons-fonts

emacs-all-the-icons-fonts: 2.50 -> 2.6.4


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


[Nix-commits] [NixOS/nixpkgs] d7ce6a: tor: 0.3.0.8 -> 0.3.0.9

2017-07-01 Thread Joachim Fasting
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: d7ce6a83b123e62a9bb7ec9f86efd1a629a345e1
  
https://github.com/NixOS/nixpkgs/commit/d7ce6a83b123e62a9bb7ec9f86efd1a629a345e1
  Author: Joachim Fasting 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/tools/security/tor/default.nix

  Log Message:
  ---
  tor: 0.3.0.8 -> 0.3.0.9

See https://blog.torproject.org/blog/tor-0309-released-security-update-clients


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


Re: [Nix-dev] Are mailing lists any good for managing patches? (was: okteta fix build)

2017-07-01 Thread Richard Ipsum
On Tue, Jun 27, 2017 at 09:33:12PM +0200, Tomas Hlavaty wrote:
> I find emails better than github too.
> 
> It's easy to get banned by github.
> 
> As for PR accumulation, here is an interesting take on bug trackers:
> http://yarchive.net/comp/linux/bug_tracking.html

http://jk.ozlabs.org/projects/patchwork/ may also be of interest.
___
nix-dev mailing list
nix-dev@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-dev


[Nix-commits] [NixOS/nixpkgs] 1add35: ncmpcpp: 0.7.7 -> 0.8

2017-07-01 Thread Johannes Frankenau
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 1add3519dffca4fa40e539904c3c9522582167f7
  
https://github.com/NixOS/nixpkgs/commit/1add3519dffca4fa40e539904c3c9522582167f7
  Author: Johannes Frankenau 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

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

  Log Message:
  ---
  ncmpcpp: 0.7.7 -> 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] 25d470: neomutt: 20170602 -> 20170609

2017-07-01 Thread Gabriel Ebner
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 25d47046beaab1eeea142846efa7bdedfc873e9c
  
https://github.com/NixOS/nixpkgs/commit/25d47046beaab1eeea142846efa7bdedfc873e9c
  Author: Johannes Frankenau 
  Date:   2017-06-29 (Thu, 29 Jun 2017)

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

  Log Message:
  ---
  neomutt: 20170602 -> 20170609


  Commit: 6acb707f350b74fc9f278ab2e77a64563ddd0ad2
  
https://github.com/NixOS/nixpkgs/commit/6acb707f350b74fc9f278ab2e77a64563ddd0ad2
  Author: Gabriel Ebner 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

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

  Log Message:
  ---
  Merge pull request #26956 from jfrankenau/neomutt-20170609

neomutt: 20170602 -> 20170609


Compare: https://github.com/NixOS/nixpkgs/compare/82b67204...6acb707f350b___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits


[Nix-commits] [NixOS/nixpkgs] 057f89: lib/maintainers: add zxc24 to fix evaluation

2017-07-01 Thread Vladimír Čunát
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 057f89b9344e5341796046f25ae4f269be6d4529
  
https://github.com/NixOS/nixpkgs/commit/057f89b9344e5341796046f25ae4f269be6d4529
  Author: Vladimír Čunát 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M lib/maintainers.nix

  Log Message:
  ---
  lib/maintainers: add zxc24 to fix evaluation

Broken by 03a00c39d.


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


[Nix-commits] [NixOS/nixpkgs] 0476a0: texlive.combine: fix perl scripts without a sheban...

2017-07-01 Thread Vladimír Čunát
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 0476a064151c8f45c0bb408897b058ca22008d2a
  
https://github.com/NixOS/nixpkgs/commit/0476a064151c8f45c0bb408897b058ca22008d2a
  Author: Vladimír Čunát 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/tools/typesetting/tex/texlive/combine.nix

  Log Message:
  ---
  texlive.combine: fix perl scripts without a shebang

Fixes #24343.  These parts of upstream texlive are really ugly.
Also improve variable quoting in the code around.

(cherry picked from commit 82b67204c13331beba2299a47eb3a49b1682)
The change seems safe enough.


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


[Nix-commits] [NixOS/nixpkgs] 8dddd2: texlive.combine: fix perl scripts without a sheban...

2017-07-01 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 82b67204c13331beba2299a47eb3a49b1682
  
https://github.com/NixOS/nixpkgs/commit/82b67204c13331beba2299a47eb3a49b1682
  Author: Vladimír Čunát 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/tools/typesetting/tex/texlive/combine.nix

  Log Message:
  ---
  texlive.combine: fix perl scripts without a shebang

Fixes #24343.  These parts of upstream texlive are really ugly.
Also improve variable quoting in the code around.


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


[Nix-commits] [NixOS/nixpkgs] 155197: ocamlPackages.ocp-ocamlres: init at 0.3

2017-07-01 Thread Vincent Laporte
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 1551975e64fca2c6975b87cf0b05431a123df6f0
  
https://github.com/NixOS/nixpkgs/commit/1551975e64fca2c6975b87cf0b05431a123df6f0
  Author: Vincent Laporte 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
A pkgs/development/ocaml-modules/ocp-ocamlres/default.nix
M pkgs/top-level/ocaml-packages.nix

  Log Message:
  ---
  ocamlPackages.ocp-ocamlres: init at 0.3

A tool ocp-ocamlres to embed files and directories inside OCaml executables,
with a companion library ocplib-ocamlres to manipulate them at run-time.

Homepage: https://www.typerex.org/ocp-ocamlres.html


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


[Nix-commits] [NixOS/nixpkgs] 81e46d: texlive: wrap scripts by older perl

2017-07-01 Thread Vladimír Čunát
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 81e46dbb29c0218e057df151e6377bf59b98db13
  
https://github.com/NixOS/nixpkgs/commit/81e46dbb29c0218e057df151e6377bf59b98db13
  Author: Vladimír Čunát 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/tools/typesetting/tex/texlive/default.nix

  Log Message:
  ---
  texlive: wrap scripts by older perl

Fixes #26890.


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


[Nix-commits] [NixOS/nixpkgs] cce12a: hdf4: Init at 4.2.12

2017-07-01 Thread Frederik Rietdijk
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: cce12a644c8a4c5d540c6d30bba1fabff60e57db
  
https://github.com/NixOS/nixpkgs/commit/cce12a644c8a4c5d540c6d30bba1fabff60e57db
  Author: Josef Kemetmueller 
  Date:   2017-06-08 (Thu, 08 Jun 2017)

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

  Log Message:
  ---
  hdf4: Init at 4.2.12


  Commit: 7b25d31825efa3a05ad76277c9042f86f918d5ef
  
https://github.com/NixOS/nixpkgs/commit/7b25d31825efa3a05ad76277c9042f86f918d5ef
  Author: Josef Kemetmueller 
  Date:   2017-06-08 (Thu, 08 Jun 2017)

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

  Log Message:
  ---
  gdal: Add hdf4 support


  Commit: 9c05499de972ba3d990002cbdf2530d3b273a836
  
https://github.com/NixOS/nixpkgs/commit/9c05499de972ba3d990002cbdf2530d3b273a836
  Author: Frederik Rietdijk 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/development/libraries/gdal/default.nix
A pkgs/tools/misc/hdf4/default.nix
M pkgs/top-level/all-packages.nix

  Log Message:
  ---
  Merge pull request #26039 from knedlsepp/add-gdal-hdf4-support

gdal: Add hdf4 support


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


[Nix-commits] [NixOS/nixpkgs] ccd6ec: ccl: create ccl symlink

2017-07-01 Thread Tomas Hlavaty
  Branch: refs/heads/release-17.03
  Home:   https://github.com/NixOS/nixpkgs
  Commit: ccd6ec20e10c8028782a5b9bd42d580afac74c67
  
https://github.com/NixOS/nixpkgs/commit/ccd6ec20e10c8028782a5b9bd42d580afac74c67
  Author: Tomas Hlavaty 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

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

  Log Message:
  ---
  ccl: create ccl symlink

Make it more intuitive for users to start ccl and avoid platform
dependent executable names.

https://github.com/NixOS/nixpkgs/issues/26934
(cherry picked from commit ad825384232d68998a1d9d7d0b135575485665de)
It seems a rather safe change.


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


[Nix-commits] [NixOS/nixpkgs] bd5629: terminfo: symlink terminfo to /etc for ncurses

2017-07-01 Thread Jörg Thalheim
  Branch: refs/heads/staging
  Home:   https://github.com/NixOS/nixpkgs
  Commit: bd562949cfa82b76ef5959bd53ee9596bc35e705
  
https://github.com/NixOS/nixpkgs/commit/bd562949cfa82b76ef5959bd53ee9596bc35e705
  Author: Guillaume Maudoux 
  Date:   2017-06-30 (Fri, 30 Jun 2017)

  Changed paths:
M nixos/modules/config/system-path.nix
A nixos/modules/config/terminfo.nix
M nixos/modules/module-list.nix
M nixos/modules/programs/environment.nix
M nixos/modules/security/sudo.nix

  Log Message:
  ---
  terminfo: symlink terminfo to /etc for ncurses


  Commit: b73a862f1777ad709b3088255d3967733549fbc9
  
https://github.com/NixOS/nixpkgs/commit/b73a862f1777ad709b3088255d3967733549fbc9
  Author: Guillaume Maudoux 
  Date:   2017-06-30 (Fri, 30 Jun 2017)

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

  Log Message:
  ---
  ncurses: look for terminfo entries in /etc


  Commit: 343ad1697d6967b7aa949752fd5c4471f691b4eb
  
https://github.com/NixOS/nixpkgs/commit/343ad1697d6967b7aa949752fd5c4471f691b4eb
  Author: Jörg Thalheim 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M nixos/modules/config/system-path.nix
A nixos/modules/config/terminfo.nix
M nixos/modules/module-list.nix
M nixos/modules/programs/environment.nix
M nixos/modules/security/sudo.nix
M pkgs/development/libraries/ncurses/default.nix

  Log Message:
  ---
  Merge pull request #26897 from layus/nixos-terminfo

terminfo: symlink terminfo to /etc for ncurses


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


[Nix-commits] [NixOS/nixpkgs] 2e78ca: mcabber: 1.0.5 -> 1.1.0

2017-07-01 Thread Pascal Wittmann
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 2e78ca284e8e10ead2108a22e07b6801c71fd070
  
https://github.com/NixOS/nixpkgs/commit/2e78ca284e8e10ead2108a22e07b6801c71fd070
  Author: Pascal Wittmann 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/applications/networking/instant-messengers/mcabber/default.nix

  Log Message:
  ---
  mcabber: 1.0.5 -> 1.1.0


  Commit: fa92dd8cfc52ffa0c70e394abe2e7e8409372cb3
  
https://github.com/NixOS/nixpkgs/commit/fa92dd8cfc52ffa0c70e394abe2e7e8409372cb3
  Author: Pascal Wittmann 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/tools/networking/nzbget/default.nix

  Log Message:
  ---
  nzbget: 18.1 -> 19.0


  Commit: cdf0c53ac77b7accf4fc9bda2914d405cce17aae
  
https://github.com/NixOS/nixpkgs/commit/cdf0c53ac77b7accf4fc9bda2914d405cce17aae
  Author: Pascal Wittmann 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/development/tools/misc/yodl/default.nix

  Log Message:
  ---
  yodl: 3.08.02 -> 4.01.00


  Commit: 1420b20f08666e79efbe81c0c0728f869b643812
  
https://github.com/NixOS/nixpkgs/commit/1420b20f08666e79efbe81c0c0728f869b643812
  Author: Pascal Wittmann 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

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

  Log Message:
  ---
  radicale: 1.1.2 -> 1.1.4


  Commit: e071756043bab71432b800af0dd55805b80b0b76
  
https://github.com/NixOS/nixpkgs/commit/e071756043bab71432b800af0dd55805b80b0b76
  Author: Pascal Wittmann 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/development/tools/analysis/spin/default.nix

  Log Message:
  ---
  spin: 6.4.5 -> 6.4.6


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


[Nix-commits] [NixOS/nixpkgs] 7d8adc: LTS Haskell 8.21

2017-07-01 Thread Peter Simons
  Branch: refs/heads/master
  Home:   https://github.com/NixOS/nixpkgs
  Commit: 7d8adcab3832cafdbd2f27ab70a27953a0a484b6
  
https://github.com/NixOS/nixpkgs/commit/7d8adcab3832cafdbd2f27ab70a27953a0a484b6
  Author: Peter Simons 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

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

  Log Message:
  ---
  LTS Haskell 8.21


  Commit: be23568daac69331f1f78b9c20b780f575ed2acd
  
https://github.com/NixOS/nixpkgs/commit/be23568daac69331f1f78b9c20b780f575ed2acd
  Author: RFish ⚓ 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

  Changed paths:
M pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix
M pkgs/development/haskell-modules/configuration-hackage2nix.yaml

  Log Message:
  ---
  hackage2nix: use older version of apply-refact with ghc-8.0.x

Version 0.4 of apply-refact doesn't compile with GHC 8.0.x. This patch
updates configurations-ghc-8.0.x to use apply-refact version 0.3.0.1.

Closes https://github.com/NixOS/nixpkgs/pull/26896.
Fixes https://github.com/NixOS/nixpkgs/issues/26895.


  Commit: 641bd6e0ca00460a1243831b42f1d06bab2d67b1
  
https://github.com/NixOS/nixpkgs/commit/641bd6e0ca00460a1243831b42f1d06bab2d67b1
  Author: Peter Simons 
  Date:   2017-07-01 (Sat, 01 Jul 2017)

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

  Log Message:
  ---
  hackage-packages.nix: automatic Haskell package set update

This update was generated by hackage2nix v2.2.1-13-g5c18fb5 from Hackage 
revision
https://github.com/commercialhaskell/all-cabal-hashes/commit/b275173e921ad083e3cbd9a448b03df9748ec7b1.


Compare: https://github.com/NixOS/nixpkgs/compare/20d31d7f4951...641bd6e0ca00___
nix-commits mailing list
nix-comm...@lists.science.uu.nl
https://mailman.science.uu.nl/mailman/listinfo/nix-commits