pkgs: refactor 'sha256' -> 'hash'

This commit is contained in:
Bruno BELANYI 2023-04-01 16:33:26 +01:00
parent eb34d23e3d
commit ffd3fb06bd
7 changed files with 9 additions and 9 deletions

View file

@ -1,13 +1,13 @@
{ lib, curl, jq, fetchFromGitHub, makeWrapper, pandoc, stdenvNoCC }:
stdenvNoCC.mkDerivation rec {
pname = "matrix-notifier";
version = "0.2.0";
version = "0.3.0";
src = fetchFromGitHub {
owner = "ambroisie";
repo = "matrix-notifier";
rev = "v${version}";
sha256 = "sha256-JiKPDrr9wyD2q5Vsac+OkFdvrDkx6mj/oC7XDVnka74=";
hash = "sha256-JiKPDrr9wyD2q5Vsac+OkFdvrDkx6mj/oC7XDVnka74=";
};
nativeBuildInputs = [