Skip to content
This repository was archived by the owner on Jan 25, 2024. It is now read-only.

Commit 3821a1a

Browse files
authored
Pin flake-compat version (#18)
This pins the version to the latest commit at the time of writing this message, along with a sha256 hash.
1 parent a9cbcb4 commit 3821a1a

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

default.nix

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
(import (builtins.fetchTarball "https://github.com/edolstra/flake-compat/archive/master.tar.gz") {
2-
src = ./.;
3-
}).defaultNix.default
1+
(import ./flake-compat.nix).defaultNix.default

flake-compat.nix

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
let
2+
flake-compat = builtins.fetchTarball {
3+
url = "https://github.com/edolstra/flake-compat/archive/99f1c2157fba4bfe6211a321fd0ee43199025dbf.tar.gz";
4+
sha256 = "0x2jn3vrawwv9xp15674wjz9pixwjyj3j771izayl962zziivbx2";
5+
};
6+
in
7+
(import flake-compat {
8+
src = ./.;
9+
})

shell.nix

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
(import (builtins.fetchTarball "https://github.com/edolstra/flake-compat/archive/master.tar.gz") {
2-
src = ./.;
3-
}).shellNix.default
1+
(import ./flake-compat.nix).shellNix.default

0 commit comments

Comments
 (0)