Merge pull request #273888 from r-ryantm/auto-update/antidote

antidote: 1.9.3 -> 1.9.4
This commit is contained in:
Weijia Wang 2024-01-13 02:58:16 +01:00 committed by GitHub
commit 3982f49828
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,14 +1,14 @@
{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation (finalAttrs: {
version = "1.9.3";
version = "1.9.4";
pname = "antidote";
src = fetchFromGitHub {
owner = "mattmc3";
repo = "antidote";
rev = "v${finalAttrs.version}";
hash = "sha256-LgI/N4FE5ysK+9I9mWGb99mkDnS+lX035MmhHXMI1f0=";
hash = "sha256-gZBDLKkLVfHC+DHlaMS/ySUjb14Jo1192JbkDQnzi7c=";
};
dontPatch = true;
@ -29,5 +29,6 @@ stdenv.mkDerivation (finalAttrs: {
homepage = "https://getantidote.github.io/";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.hitsmaxft ];
platforms = lib.platforms.all;
};
})