Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python: nix-shell with buildEnv is broken #11303

Closed
FRidh opened this issue Nov 27, 2015 · 9 comments
Closed

Python: nix-shell with buildEnv is broken #11303

FRidh opened this issue Nov 27, 2015 · 9 comments

Comments

@FRidh
Copy link
Member

FRidh commented Nov 27, 2015

Executing nix-shell with a shell.nix containing

with import <nixpkgs> {};

( pkgs.python35.buildEnv.override  {
  extraLibs = with pkgs.python35Packages; [ numpy toolz ];
}).env

will give you the interpreter, but not the extra libs numpy and toolz.
@domenkozar

@domenkozar
Copy link
Member

It works for me. Note that python is python2.7 from your system, you should invoke python3 -c "import numpy"

@FRidh
Copy link
Member Author

FRidh commented Nov 27, 2015

oh my, I must be sleepy still...
Thanks.

@FRidh FRidh closed this as completed Nov 27, 2015
@domenkozar
Copy link
Member

Happy to help :)

@FRidh
Copy link
Member Author

FRidh commented Nov 27, 2015

ok, I really do have an issue here. When I try again it just does not work.

freddy@fr-laptop:/tmp$ cat shell.nix 
with import <nixpkgs> {};

( pkgs.python35.buildEnv.override  {
  extraLibs = with pkgs.python35Packages; [ numpy toolz ];
}).env
freddy@fr-laptop:/tmp$ nix-shell -I nixpkgs=~/Code/nixpkgs --option extra-binary-caches https://hydra.nixos.org --pure --run "python3 -c 'import toolz'"
Traceback (most recent call last):
  File "<string>", line 1, in <module>
ImportError: No module named 'toolz'
freddy@fr-laptop:~/Code/nixpkgs$ git log -1
commit ade9f7167dd1fec622c1f0ff7725cb6f6743b45d
Author: Peter Simons <simons@cryp.to>
Date:   Fri Nov 27 11:16:29 2015 +0100

    nix-prefetch-git: make sure the script is interpreted by bash

    Fixes https://github.com/NixOS/nixpkgs/issues/11284.

@FRidh FRidh reopened this Nov 27, 2015
@domenkozar
Copy link
Member

@FRidh can you pull master and try again?

@FRidh
Copy link
Member Author

FRidh commented Nov 27, 2015

It seems that while the nix-shell is active, dependencies, like toolz can be garbage-collected. I don't think that should be possible. I just tested, and that was not possible before.

@FRidh
Copy link
Member Author

FRidh commented Nov 27, 2015

Just tested, and indeed it's fixed. They aren't gc-ed anymore either.

@domenkozar
Copy link
Member

Yes, packages used with nix-shell are not added to gc root. You have to use something like https://nixos.org/wiki/Development_Environments#Making_a_Persistent_nix-shell_Environment

@FRidh
Copy link
Member Author

FRidh commented Nov 27, 2015

What I meant was, when I ran nix-collect-garbage -d while I still had the nix-shell open. Before the fix, dependencies of the environment were gc-ed, while now they aren't.

Anyhow, its works now :)

MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
* commit 'refs/top-bases/experimental/ati': (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
…lover

* commit 'refs/top-bases/experimental/plover': (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
…/firebird

* commit 'refs/top-bases/experimental/firebird': (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
…erimental/parallel-building

* commit 'refs/top-bases/experimental/parallel-building': (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
* master: (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
…eclipse

* commit 'refs/top-bases/experimental/eclipse': (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
…honetic

* master: (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
… experimental/php-koellner-phonetic

* commit 'refs/top-bases/experimental/php-koellner-phonetic': (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
…/overlays

* commit 'refs/top-bases/experimental/overlays': (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
…/updates

* experimental/overlays: (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
…/hack-nix

* experimental/overlays: (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
…/hack-nix

* commit 'refs/top-bases/experimental/hack-nix': (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
…/gimp-git

* commit 'refs/top-bases/experimental/gimp-git': (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
…updates

* commit 'refs/top-bases/experimental/updates': (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
…sftpd

* commit 'refs/top-bases/experimental/vsftpd': (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
…nixos/virtualbox-server

* commit 'refs/top-bases/marc-nixos/virtualbox-server': (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
* master: (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
…al/gutenprint

* commit 'refs/top-bases/experimental/gutenprint': (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
…al/cups-1.6-and-1.7

* experimental/gutenprint: (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
…rimental/cups-1.6-and-1.7

* commit 'refs/top-bases/experimental/cups-1.6-and-1.7': (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
…ntal/apache-httpd

* commit 'refs/top-bases/experimental/apache-httpd': (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
…ed-by-marc-weber

* master: (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
…ber' into experimental/vim-plugins-used-by-marc-weber

* commit 'refs/top-bases/experimental/vim-plugins-used-by-marc-weber': (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
…/inkscape

* commit 'refs/top-bases/experimental/inkscape': (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
* master: (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
…le' into experimental/multiple-versions-in-one-file

* commit 'refs/top-bases/experimental/multiple-versions-in-one-file': (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
* commit 'refs/top-bases/experimental/haxe': (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
* master: (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
…rimental/imap-sync-update

* commit 'refs/top-bases/experimental/imap-sync-update': (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
…d-instances

* master: (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
…into experimental/multiple-mysqld-instances

* commit 'refs/top-bases/experimental/multiple-mysqld-instances': (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
…l/mercurial

* commit 'refs/top-bases/experimental/mercurial': (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
* commit 'refs/top-bases/experimental/nix': (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
… marc-nixos/minimal-install-archive

* commit 'refs/top-bases/marc-nixos/minimal-install-archive': (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
* master: (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
* commit 'refs/top-bases/experimental/ruby': (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
…/arangodb

* commit 'refs/top-bases/experimental/arangodb': (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
* commit 'refs/top-bases/marc-nixos/postfix': (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
…marc

* experimental/updates: (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
* commit 'refs/top-bases/experimental/opera': (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
* master: (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
…blender

* commit 'refs/top-bases/experimental/blender': (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
…/wmii-old

* commit 'refs/top-bases/experimental/wmii-old': (2890 commits)
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  calibre: 2.44.1 -> 2.45.0
  ...
MarcWeber added a commit to MarcWeber/nixpkgs that referenced this issue Dec 9, 2015
* commit 'refs/top-bases/experimental/marc': (2891 commits)
  fix
  ocaml: add local copy of the ocamlbuild patch
  Enable to create hybrid ISO without UEFI boot
  basex: 7.8.2 -> 8.3.1
  statsd: updated package and nixos service
  idris-modules: Add docs
  idris-modules: documentation
  goPackages.git-lfs: remove `man` and `script`
  font-awesome-ttf: 4.4.0 -> 4.5.0
  Add wl-pprint Idris package.
  system for automated deduction: init at 2.3-25
  idris-modules: Filter out default.nix
  idris-modules: Read the filesystem to populate package list
  Add builtin idris packages to idrisPackages
  Add idrisPackages to all-packages.nix
  Add with-packages wrapper for idris
  go-git-lfs: fix build
  buildPythonPackage: fix a regression NixOS#11303
  nix-prefetch-git: make sure the script is interpreted by bash
  wolfssl: init at 3.7.0
  ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants