summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorGuillaume Boisseau2024-04-18 11:17:40 +0200
committerGitHub2024-04-18 11:17:40 +0200
commitb4c3829305cac70827f6cbca2e90b0ef8be00d47 (patch)
tree4872b0d16d71e7ddc61c30639e7130896244cce1 /flake.nix
parent6b075d3bfa8f8c28fe706ee79c2beb20d58ea946 (diff)
parent75efc0213100f405fa64f3362e2fc4a73d09f61e (diff)
Merge pull request #145 from RaitoBezarius/no-flakes
Diffstat (limited to '')
-rw-r--r--flake.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index 29960c9c..a436d773 100644
--- a/flake.nix
+++ b/flake.nix
@@ -8,11 +8,12 @@
flake-utils.follows = "charon/flake-utils";
nixpkgs.follows = "charon/nixpkgs";
hacl-nix.url = "github:hacl-star/hacl-nix";
+ flake-compat.url = "github:nix-community/flake-compat";
};
# Remark: keep the list of outputs in sync with the list of inputs above
# (see above remark)
- outputs = { self, charon, flake-utils, nixpkgs, hacl-nix }:
+ outputs = { self, charon, flake-utils, nixpkgs, hacl-nix, flake-compat }:
flake-utils.lib.eachSystem [ "x86_64-linux" ] (system:
let
pkgs = import nixpkgs { inherit system; };