According to @zimbatm, he got the SHA256 hashes via nix-prefetch-git.
However, fetchFromGitHub doesn't use Git to fetch the sources but uses
fetchzip under the hood, so we get plain source directories in the Nix
store, which in turn are hashed.
Tested by:
nix-build --no-out-link -E 'map (x:
(builtins.getAttr x (import ./. {})).src
) [ "ruby_1_9_3" "ruby_2_0_0" "ruby_2_1_0" "ruby_2_1_1" "ruby_2_1_2"
"ruby_2_1_3" "ruby_2_1_6" "ruby_2_1_7" "ruby_2_2_0" "ruby_2_2_2"
"ruby_2_2_3"
]'
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This update was generated by hackage2nix v20150922-46-gf1bbc76 using the following inputs:
- Nixpkgs: 4619baf1f6
- Hackage: 4269955365
- LTS Haskell: 57dab1c997
- Stackage Nightly: 87110f79ed
This update was generated by hackage2nix v20150922-46-gf1bbc76 using the following inputs:
- Nixpkgs: 02a00be50f
- Hackage: 2c186df615
- LTS Haskell: 57dab1c997
- Stackage Nightly: c3ba1c0c15
This update was generated by hackage2nix v20150922-46-gf1bbc76 using the following inputs:
- Nixpkgs: 7c559e1c0f
- Hackage: 49a7fb0a6f
- LTS Haskell: 57dab1c997
- Stackage Nightly: ecefc78ca3
This update was generated by hackage2nix v20150922-46-gf1bbc76 using the following inputs:
- Nixpkgs: f9c10dd1aa
- Hackage: fda7f3f477
- LTS Haskell: 57dab1c997
- Stackage Nightly: a30c2abd60
pylint (using Python 2.7) got propagated into python3Packages.spyder
so Python 2.7 setup-hook was used instead of python34.
Now that pylint is part of pythonPackages attribute set, pylint is
used with python3.4 as a base.
This was preventing the Nixpkgs channel from updating, since the
program indexer barfed on:
error: anonymous function at /nix/store/wdnwbh3kmf68nhqqp0khcyxbdbp43vg5-nixos-14.12.626.b0d594c/nixos/nixpkgs/pkgs/top-level/node-packages.nix:1:1 called without required argument ‘neededNatives’, at /data/releases/nixos/unstable-small/.tmp-nixos-16.03pre72946.c50d013-787/unpack/nixos-16.03pre72946.c50d013/lib/customisation.nix:56:12
because Nixpkgs 16.03 was importing files from Nixpkgs 14.12.
Also added some half-assed checks to detect this issue in the future.