Skip to content
Snippets Groups Projects
Commit ed5ea470 authored by Tom Sydney Kerckhove's avatar Tom Sydney Kerckhove
Browse files

allow unfree

parent 67d9cb45
2 merge requests!20ghc 9.6.x updates,!11allow unfree
...@@ -31,8 +31,9 @@ ...@@ -31,8 +31,9 @@
"type": "github" "type": "github"
}, },
"original": { "original": {
"id": "flake-utils", "owner": "numtide",
"type": "indirect" "repo": "flake-utils",
"type": "github"
} }
}, },
"flake-utils_2": { "flake-utils_2": {
...@@ -105,11 +106,11 @@ ...@@ -105,11 +106,11 @@
"nixpkgs": "nixpkgs_2" "nixpkgs": "nixpkgs_2"
}, },
"locked": { "locked": {
"lastModified": 1696753256, "lastModified": 1696931656,
"narHash": "sha256-Vu3APqRdhEFYr+GcACNDqsw9B4j2rHQZUHxh4o5oJEo=", "narHash": "sha256-n5f2zcYFd8bYdt1yCKsb/dAHvLv2KrGOUrqjVgY7aDo=",
"ref": "refs/heads/master", "ref": "refs/heads/master",
"rev": "6604e9b3c1b723476f81ae73930b21e216aa82dc", "rev": "71792f6f7bf1ebcaec123b977eb787059ef1879e",
"revCount": 1094, "revCount": 1101,
"type": "git", "type": "git",
"url": "https://gitlab.horizon-haskell.net/package-sets/horizon-core" "url": "https://gitlab.horizon-haskell.net/package-sets/horizon-core"
}, },
......
...@@ -13,6 +13,7 @@ ...@@ -13,6 +13,7 @@
url = "git+https://gitlab.horizon-haskell.net/shells/horizon-shell"; url = "git+https://gitlab.horizon-haskell.net/shells/horizon-shell";
flake = false; flake = false;
}; };
flake-utils.url = "github:numtide/flake-utils";
lint-utils.url = "git+https://gitlab.nixica.dev/nix/lint-utils"; lint-utils.url = "git+https://gitlab.nixica.dev/nix/lint-utils";
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
}; };
...@@ -30,7 +31,7 @@ ...@@ -30,7 +31,7 @@
}: }:
flake-utils.lib.eachSystem [ "x86_64-linux" ] (system: flake-utils.lib.eachSystem [ "x86_64-linux" ] (system:
let let
pkgs = import nixpkgs { inherit system; }; pkgs = import nixpkgs { inherit system; allowUnfree = true; };
in in
with pkgs.lib; with pkgs.lib;
with pkgs.writers; with pkgs.writers;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment