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
444 B
Nix
Raw Normal View History

2021-11-26 17:00:14 +00:00
{ lib, fetchFromGitHub }:
rec {
version = "1.5.4";
2021-11-26 17:00:14 +00:00
src = fetchFromGitHub {
owner = "TandoorRecipes";
repo = "recipes";
rev = version;
hash = "sha256-cVrgmRDzuLzl2+4UcrLRdrP6ZFWMkavu9OEogNas2fA=";
2021-11-26 17:00:14 +00:00
};
yarnHash = "sha256-0u9P/OsoThP8gonrzcnO5zhIboWMI1mTsXHlbt7l9oE=";
2021-11-26 17:00:14 +00:00
meta = with lib; {
homepage = "https://tandoor.dev/";
license = licenses.agpl3Only;
maintainers = with maintainers; [ ambroisie ];
};
}