nixpkgs/pkgs/applications/misc/tandoor-recipes/common.nix
2024-02-03 23:22:16 +01:00

20 lines
445 B
Nix

{ lib, fetchFromGitHub }:
rec {
version = "1.5.12";
src = fetchFromGitHub {
owner = "TandoorRecipes";
repo = "recipes";
rev = version;
hash = "sha256-5UslXRoiq9cipGCOiqpf+rv7OPTsW4qpVTjakNeg4ug=";
};
yarnHash = "sha256-CresovsRh+dLHGnv49fCi/i66QXOS3SnzfFNvkVUfd8=";
meta = with lib; {
homepage = "https://tandoor.dev/";
license = licenses.agpl3Only;
maintainers = with maintainers; [ ambroisie ];
};
}