nix-bitcoin/pkgs/nixpkgs-pinned.nix

19 lines
517 B
Nix
Raw Normal View History

let
2019-11-07 12:57:00 -08:00
fetch = { rev, sha256 }:
builtins.fetchTarball {
url = "https://github.com/nixos/nixpkgs/archive/${rev}.tar.gz";
2019-11-07 12:57:00 -08:00
inherit sha256;
};
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 {
2021-04-18 04:48:58 -07:00
rev = "5438e11ea34adf2b8111d80e360442077476ff53";
sha256 = "14r88yiz69b828hxq1i5xwy63xa4cwzaa88xa4ig05sfsmrf04q1";
2019-11-07 12:57:00 -08:00
};
nixpkgs-unstable = fetch {
rev = "3d1a7716d7f1fccbd7d30ab3b2ed3db831f43bde";
sha256 = "14r8qa6lnzp78c3amzi5r8n11l1kcxcx1gjhnc1kmn4indd43649";
2019-11-07 12:57:00 -08:00
};
2019-01-26 10:12:08 -08:00
}