mirror of
https://github.com/tweag/distributed-closure.git
synced 2024-11-22 11:34:43 +03:00
10 lines
281 B
Nix
10 lines
281 B
Nix
let
|
|
rev = "19.09";
|
|
sha256 = "0mhqhq21y5vrr1f30qd2bvydv4bbbslvyzclhw0kdxmkgg3z4c92";
|
|
nixpkgs = builtins.fetchTarball {
|
|
url = "https://github.com/NixOS/nixpkgs/archive/${rev}.tar.gz";
|
|
inherit sha256;
|
|
};
|
|
pkgs = import nixpkgs { config.allowUnfree = true; };
|
|
in pkgs
|