Merge pull request #235412 from wahjava/update-fossil

fossil: 2.21 -> 2.22
This commit is contained in:
Pol Dellaiera 2023-06-02 07:54:02 +02:00 committed by GitHub
commit 175bd273d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,13 +15,13 @@
, withJson ? true
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "fossil";
version = "2.21";
version = "2.22";
src = fetchurl {
url = "https://www.fossil-scm.org/home/tarball/version-${version}/fossil-${version}.tar.gz";
hash = "sha256-wf7sp4ISTN52mSQHxw8s7//L4beLZtwkaJDYMVnvgIQ=";
url = "https://www.fossil-scm.org/home/tarball/version-${finalAttrs.version}/fossil-${finalAttrs.version}.tar.gz";
hash = "sha256-gdgj/29dF1s4TfqE7roNBS2nOjfNZs1yt4bnFnEhDWs=";
};
# required for build time tool `./tools/translate.c`
@ -67,4 +67,4 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ maggesi viric ];
platforms = platforms.all;
};
}
})