nixpkgs/pkgs/applications/misc/tandoor-recipes/common.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
448 B
Nix
Raw Normal View History

2021-11-26 17:00:14 +00:00
{ lib, fetchFromGitHub }:
rec {
2022-10-10 20:55:11 +00:00
version = "1.4.4";
2021-11-26 17:00:14 +00:00
src = fetchFromGitHub {
owner = "TandoorRecipes";
repo = "recipes";
rev = version;
2022-10-10 20:55:11 +00:00
sha256 = "sha256-1wqZoOT2Aafbs2P0mL33jw5HkrLIitUcRt6bQQcHx40=";
2021-11-26 17:00:14 +00:00
};
yarnSha256 = "sha256-gH0q3pJ2BC5pAU9KSo3C9DDRUnpypoyLOEqKSrkxYrk=";
meta = with lib; {
homepage = "https://tandoor.dev/";
license = licenses.agpl3Only;
maintainers = with maintainers; [ ambroisie ];
};
}