add volpeon emojis
This commit is contained in:
parent
66c98fe365
commit
f7a50f22e2
3 changed files with 56 additions and 2 deletions
27
modules/fedi/blobfox.nix
Normal file
27
modules/fedi/blobfox.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
stdenvNoCC,
|
||||
fetchurl,
|
||||
unzip,
|
||||
}:
|
||||
stdenvNoCC.mkDerivation {
|
||||
pname = "blobfox";
|
||||
version = "2020.09.04";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://volpeon.ink/emojis/blobfox/blobfox.zip";
|
||||
hash = "";
|
||||
};
|
||||
|
||||
sourceRoot = ".";
|
||||
|
||||
nativeBuildInputs = [ unzip ];
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p $out
|
||||
cp *.png $out
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue