meme-bingo-web: init at 0.2.0
This commit is contained in:
parent
90fba39526
commit
82a2a96f98
2 changed files with 36 additions and 0 deletions
34
pkgs/servers/web-apps/meme-bingo-web/default.nix
Normal file
34
pkgs/servers/web-apps/meme-bingo-web/default.nix
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
{ lib, fetchFromGitea, rustPlatform, makeWrapper }:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "meme-bingo-web";
|
||||||
|
version = "0.2.0";
|
||||||
|
|
||||||
|
src = fetchFromGitea {
|
||||||
|
domain = "codeberg.org";
|
||||||
|
owner = "annaaurora";
|
||||||
|
repo = "meme-bingo-web";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-6hQra+10TaaQGzwiYfL+WHmGc6f0Hn8Tybd0lA5t0qc=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoHash = "sha256-/hBymxNAzyfapUL5Whkg4NBLA7Fc8A1npXEa9MXTAz4=";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
mkdir -p $out/share/meme-bingo-web
|
||||||
|
cp -r {templates,static} $out/share/meme-bingo-web/
|
||||||
|
|
||||||
|
wrapProgram $out/bin/meme-bingo-web \
|
||||||
|
--set MEME_BINGO_TEMPLATES $out/share/meme-bingo-web/templates \
|
||||||
|
--set MEME_BINGO_STATIC $out/share/meme-bingo-web/static
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Play meme bingo using this neat web app";
|
||||||
|
homepage = "https://codeberg.org/annaaurora/meme-bingo-web";
|
||||||
|
license = licenses.unlicense;
|
||||||
|
maintainers = with maintainers; [ annaaurora ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -33838,6 +33838,8 @@ with pkgs;
|
||||||
|
|
||||||
melody = callPackage ../tools/misc/melody { };
|
melody = callPackage ../tools/misc/melody { };
|
||||||
|
|
||||||
|
meme-bingo-web = callPackage ../servers/web-apps/meme-bingo-web { };
|
||||||
|
|
||||||
meme-image-generator = callPackage ../applications/graphics/meme-image-generator { };
|
meme-image-generator = callPackage ../applications/graphics/meme-image-generator { };
|
||||||
|
|
||||||
meme-suite = callPackage ../applications/science/biology/meme-suite { };
|
meme-suite = callPackage ../applications/science/biology/meme-suite { };
|
||||||
|
|
Loading…
Reference in a new issue