hocker/nix/pkgs.nix

19 lines
405 B
Nix
Raw Permalink Normal View History

2021-04-23 20:27:35 +03:00
let
2022-05-16 23:34:39 +03:00
# master as of 2022-05-16
rev = "72cb3780a57881aa2fc5e2268380d85de7ea2b4c";
2021-04-23 20:27:35 +03:00
2022-05-16 23:34:39 +03:00
sha256 = "sha256-NNuTF0Z2jHErDr0JLXd+h996xPXGS9cbBBJDENUf13o=";
2021-04-23 20:27:35 +03:00
nixpkgs = builtins.fetchTarball {
url = "https://github.com/NixOS/nixpkgs/archive/${rev}.tar.gz";
inherit sha256;
};
in
import nixpkgs {
config = { allowUnfree = true; };
2021-04-23 20:31:00 +03:00
overlays = [
(import ./overlays/haskell-packages.nix)
];
2021-04-23 20:27:35 +03:00
}