mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 14:33:22 +00:00
aab2097d2d
We also take the opportunity also to migrate from "sha256" and "yarnSha256" attributes to "hash" and "yarnHash" attributes.
20 lines
444 B
Nix
20 lines
444 B
Nix
{ lib, fetchFromGitHub }:
|
|
rec {
|
|
version = "1.5.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "TandoorRecipes";
|
|
repo = "recipes";
|
|
rev = version;
|
|
hash = "sha256-cVrgmRDzuLzl2+4UcrLRdrP6ZFWMkavu9OEogNas2fA=";
|
|
};
|
|
|
|
yarnHash = "sha256-0u9P/OsoThP8gonrzcnO5zhIboWMI1mTsXHlbt7l9oE=";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://tandoor.dev/";
|
|
license = licenses.agpl3Only;
|
|
maintainers = with maintainers; [ ambroisie ];
|
|
};
|
|
}
|