diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2021-01-24 01:13:31 +0100 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2021-01-24 01:13:31 +0100 |
commit | ada96f10e64d34f06853d9915a8db580420e69b4 (patch) | |
tree | c551ff5a31db95fbf9f26cb02ada00d2cb0b3384 /flakes/private/opendmarc | |
parent | 3d11eafc9c516321901908338befe4c04b58f3aa (diff) | |
download | Nix-ada96f10e64d34f06853d9915a8db580420e69b4.tar.gz Nix-ada96f10e64d34f06853d9915a8db580420e69b4.tar.zst Nix-ada96f10e64d34f06853d9915a8db580420e69b4.zip |
Use relative path for private flakes
Diffstat (limited to 'flakes/private/opendmarc')
-rw-r--r-- | flakes/private/opendmarc/flake.lock | 16 | ||||
-rw-r--r-- | flakes/private/opendmarc/flake.nix | 5 |
2 files changed, 7 insertions, 14 deletions
diff --git a/flakes/private/opendmarc/flake.lock b/flakes/private/opendmarc/flake.lock index 2c2a07d..ae07161 100644 --- a/flakes/private/opendmarc/flake.lock +++ b/flakes/private/opendmarc/flake.lock | |||
@@ -121,19 +121,13 @@ | |||
121 | "nixpkgs": "nixpkgs_3" | 121 | "nixpkgs": "nixpkgs_3" |
122 | }, | 122 | }, |
123 | "locked": { | 123 | "locked": { |
124 | "dir": "flakes/opendmarc", | 124 | "narHash": "sha256-V6elpT2t2bYOnY6RSwLIu+SU7Zajkk7oonjscoYpWKo=", |
125 | "lastModified": 1611220039, | 125 | "path": "../../opendmarc", |
126 | "narHash": "sha256-R6XrtP+YIa+038LmlEo4B3X3RbMzidk/vo5yKTTKFx4=", | 126 | "type": "path" |
127 | "ref": "master", | ||
128 | "rev": "ef43c36272ca539cbfe803ded03949451b17b679", | ||
129 | "revCount": 803, | ||
130 | "type": "git", | ||
131 | "url": "https://git.immae.eu/perso/Immae/Config/Nix.git" | ||
132 | }, | 127 | }, |
133 | "original": { | 128 | "original": { |
134 | "dir": "flakes/opendmarc", | 129 | "path": "../../opendmarc", |
135 | "type": "git", | 130 | "type": "path" |
136 | "url": "https://git.immae.eu/perso/Immae/Config/Nix.git" | ||
137 | } | 131 | } |
138 | }, | 132 | }, |
139 | "root": { | 133 | "root": { |
diff --git a/flakes/private/opendmarc/flake.nix b/flakes/private/opendmarc/flake.nix index 9aeb3db..384bf98 100644 --- a/flakes/private/opendmarc/flake.nix +++ b/flakes/private/opendmarc/flake.nix | |||
@@ -1,8 +1,7 @@ | |||
1 | { | 1 | { |
2 | inputs.opendmarc = { | 2 | inputs.opendmarc = { |
3 | url = "https://git.immae.eu/perso/Immae/Config/Nix.git"; | 3 | path = "../../opendmarc"; |
4 | type = "git"; | 4 | type = "path"; |
5 | dir = "flakes/opendmarc"; | ||
6 | }; | 5 | }; |
7 | inputs.nixpkgs.url = "github:NixOS/nixpkgs"; | 6 | inputs.nixpkgs.url = "github:NixOS/nixpkgs"; |
8 | 7 | ||