added blobhaj flags

This commit is contained in:
twoneis 2025-02-24 20:57:37 +01:00
parent 1edd932f5c
commit e35f4398dc
25 changed files with 4 additions and 11 deletions

View file

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