diff options
author | Alex Auvolat <alex@adnab.me> | 2023-03-17 18:01:35 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2023-03-17 18:01:35 +0100 |
commit | f629f4c17187be0561cd27cd042270c33d2b2d98 (patch) | |
tree | 45d457e0c9a20b698b711ef1ab89608e680855cf /nix | |
parent | f9b94f0b470aec6f2e8cb1085b11724ca303c221 (diff) | |
download | nixcfg-f629f4c17187be0561cd27cd042270c33d2b2d98.tar.gz nixcfg-f629f4c17187be0561cd27cd042270c33d2b2d98.zip |
wgautomesh from static binary hosted on gitea
Diffstat (limited to 'nix')
-rw-r--r-- | nix/wgautomesh.nix | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/nix/wgautomesh.nix b/nix/wgautomesh.nix index fd2fe0d..e46ad75 100644 --- a/nix/wgautomesh.nix +++ b/nix/wgautomesh.nix @@ -1,9 +1,8 @@ let - src = builtins.fetchGit { - url = "https://git.deuxfleurs.fr/lx/wgautomesh"; - rev = "a02cb2bb43935c45a1d3914ed74197d2a85920a0"; + wgautomesh = builtins.fetchTarball { + url = "https://git.deuxfleurs.fr/attachments/ce203833-1ae7-43d4-9bf4-b49b560c9f4b"; + sha256 = "sha256:1kc990s7xkwff53vs6c3slg7ljsyr9xz1i13j61ivfj6djyh8rmj"; }; - wgautomesh = (import src).packages.x86_64-linux.default; in { lib, config, pkgs, ... }: |