2017-12-28 16:41:39 +01:00
|
|
|
# Given a Git revision hash `<rev>`, you get the new SHA256 by running:
|
|
|
|
#
|
|
|
|
# ```bash
|
|
|
|
# $ nix-prefetch-url "https://github.com/NixOS/nixpkgs/archive/<rev>.tar.gz"
|
|
|
|
# ```
|
|
|
|
#
|
|
|
|
# The SHA256 will be printed as the last line of stdout.
|
2017-03-16 00:02:26 +01:00
|
|
|
|
2017-12-28 16:41:39 +01:00
|
|
|
import ./fetch-nixpkgs.nix {
|
2018-03-12 17:06:21 +01:00
|
|
|
rev = "74286ec9e76be7cd00c4247b9acb430c4bd9f1ce";
|
|
|
|
sha256 = "0njb3qd2wxj7gil8y61lwh7zacmvr6zklv67w5zmvifi1fvalvdg";
|
|
|
|
outputSha256 = "13ydgpzl5nix4gc358iy9zjd5nrrpbpwpxmfhis4aai2zmkja3ak";
|
2017-12-28 16:41:39 +01:00
|
|
|
}
|