60f07311b9
GitOrigin-RevId: f8e2ebd66d097614d51a56a755450d4ae1632df1
19 lines
445 B
Nix
19 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 ];
|
|
};
|
|
}
|