feat(pkgs): add homer

This commit is contained in:
Michael Thomas 2024-05-08 20:43:39 -04:00
parent cd2f42a344
commit 6b07f32e6c
2 changed files with 20 additions and 0 deletions

View File

@ -1,3 +1,4 @@
pkgs: { pkgs: {
homer = pkgs.callPackage ./homer {};
keycloak-theme-keywind = pkgs.callPackage ./keywind {}; keycloak-theme-keywind = pkgs.callPackage ./keywind {};
} }

19
pkgs/homer/default.nix Normal file
View File

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