We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91262e7 commit 717492aCopy full SHA for 717492a
default.nix
@@ -8,15 +8,14 @@
8
9
, withHoogle ? true
10
11
-, rev ? "ed1b59a98e7bd61dd7eac266569c294fb6b16300"
12
-, sha256 ? "0b2wdbbaqdqccl7q9gskhfjk7xaqvjwcls4b6218anyc247gscnb"
+, rev ? "c4adeddb5f8e945517068968d06ea838b7c24bd3"
13
14
, pkgs ?
15
if builtins.compareVersions builtins.nixVersion "2.0" < 0
16
then abort "hnix requires at least nix 2.0"
17
- else import (builtins.fetchTarball {
18
- url = "https://github.com/NixOS/nixpkgs/archive/${rev}.tar.gz";
19
- inherit sha256; }) {
+ else import (builtins.fetchGit {
+ url = "https://github.com/NixOS/nixpkgs/";
+ inherit rev; }) {
20
config.allowUnfree = true;
21
config.allowBroken = false;
22
config.packageOverrides = pkgs: rec {
0 commit comments