Merge pull request #303548 from wahjava/update-fuzzel

fuzzel: 1.9.2 -> 1.10.0
This commit is contained in:
Weijia Wang 2024-04-14 21:12:37 +02:00 committed by GitHub
commit 248e51a6ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 6 deletions

View File

@ -22,16 +22,16 @@
assert svgSupport -> enableCairo;
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "fuzzel";
version = "1.9.2";
version = "1.10.0";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "dnkl";
repo = pname;
rev = version;
hash = "sha256-X1P/ghX97KCQcrNk44Cy2IAGuZ8DDwHBWzh1AHLDvd4=";
repo = "fuzzel";
rev = finalAttrs.version;
hash = "sha256-4wTwsjnmPsg+kc05izeyXilzDO0LpD3g3PRBqgLPK2I=";
};
depsBuildBuild = [
@ -73,4 +73,4 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ fionera polykernel rodrgz ];
platforms = with platforms; linux;
};
}
})