added blobhaj flags
This commit is contained in:
parent
36853433f5
commit
c35aec21f0
2 changed files with 31 additions and 0 deletions
27
modules/fedi/blobhajFlags.nix
Normal file
27
modules/fedi/blobhajFlags.nix
Normal 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
|
||||
'';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue