1
0

replace fetchGit with pkgs.fetchgit

This commit is contained in:
2022-10-17 23:03:09 +02:00
parent 0b66c298ab
commit 6dc04a8581
9 changed files with 29 additions and 27 deletions

View File

@@ -1,4 +1,5 @@
{
pkgs,
buildPythonPackage,
flask,
requests,
@@ -6,10 +7,10 @@
}:
let
src = fetchGit {
src = pkgs.fetchgit {
url = "https://git.clerie.de/clerie/uptime-status.git";
ref = "main";
rev = "caacaced97617838bbd9b7b91a4e3d06e411139b";
sha256 = "sha256-qVvUZ+j2JnG26Fl/UcfpjY30RQjAPqCCwbxtz/+r/dU=";
};
pname = "uptimestatus";
version = "0.0.1";