Unverified Commit 248e51a6 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #303548 from wahjava/update-fuzzel

fuzzel: 1.9.2 -> 1.10.0
parents e8d27c90 2a16ac41
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -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;
  };
}
})