added blobhaj flags

This commit is contained in:
twoneis 2025-02-24 20:28:56 +01:00
parent 36853433f5
commit c35aec21f0
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{
stdenvNoCC,
fetchurl,
unzip,
}:
stdenvNoCC.mkDerivation {
pname = "blobhajFlags";
version = "1.0";
src = fetchurl {
url = "https://heatherhorns.com/BlobhajFlags.zip";
hash = "";
};
sourceRoot = ".";
nativeBuildInputs = [ unzip ];
installPhase = ''
runHook preInstall
mkdir -p $out
cp 512w/*.png $out
runHook postInstall
'';
}