mirror of
https://github.com/awakesecurity/hocker.git
synced 2024-11-22 11:03:14 +03:00
19 lines
405 B
Nix
19 lines
405 B
Nix
let
|
|
# master as of 2022-05-16
|
|
rev = "72cb3780a57881aa2fc5e2268380d85de7ea2b4c";
|
|
|
|
sha256 = "sha256-NNuTF0Z2jHErDr0JLXd+h996xPXGS9cbBBJDENUf13o=";
|
|
|
|
nixpkgs = builtins.fetchTarball {
|
|
url = "https://github.com/NixOS/nixpkgs/archive/${rev}.tar.gz";
|
|
inherit sha256;
|
|
};
|
|
|
|
in
|
|
import nixpkgs {
|
|
config = { allowUnfree = true; };
|
|
overlays = [
|
|
(import ./overlays/haskell-packages.nix)
|
|
];
|
|
}
|