2019-09-15 18:28:39 -07:00
|
|
|
let
|
2019-11-07 12:57:00 -08:00
|
|
|
fetch = { rev, sha256 }:
|
|
|
|
builtins.fetchTarball {
|
|
|
|
url = "https://github.com/nixos/nixpkgs-channels/archive/${rev}.tar.gz";
|
|
|
|
inherit sha256;
|
|
|
|
};
|
2019-09-15 18:28:39 -07:00
|
|
|
in
|
2019-01-26 10:12:08 -08:00
|
|
|
{
|
2019-11-07 12:57:00 -08:00
|
|
|
# To update, run ../helper/fetch-channel REV
|
|
|
|
nixpkgs = fetch {
|
2020-04-26 11:53:05 -07:00
|
|
|
rev = "95b9c99f6d091273572ff1ec62b97b6ad3f68bdf";
|
|
|
|
sha256 = "1qcwr9binkwfayix88aljwssxi5djkwscx0rnwlk1yp9q60rgp3d";
|
2019-11-07 12:57:00 -08:00
|
|
|
};
|
|
|
|
nixpkgs-unstable = fetch {
|
2020-04-26 11:53:05 -07:00
|
|
|
rev = "22a3bf9fb9edad917fb6cd1066d58b5e426ee975";
|
|
|
|
sha256 = "089hqg2r2ar5piw9q5z3iv0qbmfjc4rl5wkx9z16aqnlras72zsa";
|
2019-11-07 12:57:00 -08:00
|
|
|
};
|
2019-01-26 10:12:08 -08:00
|
|
|
}
|