pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / servers / web-apps / meme-bingo-web / default.nix
blob9c98fe5a83a2009b992cf177462d5b5793983cc4
1 { lib
2 , fetchFromGitea
3 , rustPlatform
4 , makeWrapper
5 , nix-update-script
6 }:
8 rustPlatform.buildRustPackage rec {
9   pname = "meme-bingo-web";
10   version = "1.1.0";
12   src = fetchFromGitea {
13     domain = "codeberg.org";
14     owner = "annaaurora";
15     repo = "meme-bingo-web";
16     rev = "v${version}";
17     hash = "sha256-AKY0EjeoOnliRN3XSnlCgzCvnWOkZPQz/9QIcr8+hQM=";
18   };
20   cargoHash = "sha256-/+9fxIk3EQxG3PzQLRsYcwBHDZaOtWUsAYGa7t1jLHY=";
22   nativeBuildInputs = [ makeWrapper ];
24   postInstall = ''
25     mkdir -p $out/share/meme-bingo-web
26     cp -r {templates,static} $out/share/meme-bingo-web/
28     wrapProgram $out/bin/meme-bingo-web \
29       --set MEME_BINGO_TEMPLATES $out/share/meme-bingo-web/templates \
30       --set MEME_BINGO_STATIC $out/share/meme-bingo-web/static
31   '';
33   passthru.updateScript = nix-update-script { };
35   meta = with lib; {
36     description = "Play meme bingo using this neat web app";
37     mainProgram = "meme-bingo-web";
38     homepage = "https://codeberg.org/annaaurora/meme-bingo-web";
39     license = licenses.unlicense;
40     maintainers = with maintainers; [ annaaurora ];
41   };