pkgs/homer: deprecate and use official

This commit is contained in:
Felix Buehler 2024-12-08 21:53:29 +01:00
parent 5227d0d4bb
commit 59aa5e89ed
3 changed files with 2 additions and 18 deletions

View file

@ -1,4 +1,3 @@
final: _prev: {
homer = final.callPackage ./homer { };
grafana-dashboards = final.callPackage ./grafana-dashboards { };
}

View file

@ -1,16 +0,0 @@
{ stdenv, fetchzip }:
stdenv.mkDerivation rec {
pname = "homer";
version = "24.11.1";
src = fetchzip {
url = "https://github.com/bastienwirtz/homer/releases/download/v${version}/homer.zip";
hash = "sha256-rp9NyUfywKXSt9SRMJI6QOh4IcHsnpiBM/NGM4TLFaE=";
stripRoot = false;
};
installPhase = ''
cp -r $src $out/
'';
sourceRoot = ".";
}