
https://github.com/TandoorRecipes/recipes/releases/tag/2.0.1 Diff: https://github.com/TandoorRecipes/recipes/compare/1.5.35...2.0.1
21 lines
529 B
Nix
21 lines
529 B
Nix
{ lib, fetchFromGitHub }:
|
|
rec {
|
|
version = "2.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "TandoorRecipes";
|
|
repo = "recipes";
|
|
tag = version;
|
|
hash = "sha256-tFnfuRYg9lq7hveGZqpRVHNaXxS6BUs88/BHnUXe4mA=";
|
|
};
|
|
|
|
yarnHash = "sha256-6+GmYibzujV1vE0FqMctGscRkrendpvczDdMK++qtTU=";
|
|
|
|
meta = {
|
|
homepage = "https://tandoor.dev/";
|
|
changelog = "https://github.com/TandoorRecipes/recipes/releases/tag/${version}";
|
|
license = lib.licenses.agpl3Only;
|
|
maintainers = with lib.maintainers; [ jvanbruegge ];
|
|
};
|
|
}
|