mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 14:13:35 +00:00
20 lines
448 B
Nix
20 lines
448 B
Nix
{ lib, fetchFromGitHub }:
|
|
rec {
|
|
version = "1.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "TandoorRecipes";
|
|
repo = "recipes";
|
|
rev = version;
|
|
sha256 = "sha256-Q/IwjSByCUXVYxhk3U7oWvlMxrJxyajhpsRyq67PVHY=";
|
|
};
|
|
|
|
yarnSha256 = "sha256-gH0q3pJ2BC5pAU9KSo3C9DDRUnpypoyLOEqKSrkxYrk=";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://tandoor.dev/";
|
|
license = licenses.agpl3Only;
|
|
maintainers = with maintainers; [ ambroisie ];
|
|
};
|
|
}
|