31 lines
486 B
Nix
Executable File
31 lines
486 B
Nix
Executable File
{
|
|
lib,
|
|
stdenvNoCC,
|
|
}:
|
|
stdenvNoCC.mkDerivation {
|
|
pname = "profile-pic";
|
|
version = "1.0.0";
|
|
|
|
src = ./profile-pic.jpg;
|
|
|
|
dontUnpack = true;
|
|
|
|
dontBuild = true;
|
|
|
|
dontFixup = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p "$out"
|
|
cp $src $out/profile-pic
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Profile Pic for Matt";
|
|
homepage = "https://authentik.mjallen.dev";
|
|
platforms = platforms.all;
|
|
maintainers = [ ];
|
|
};
|
|
}
|