Unverified Commit d4cc7c79 authored by Adam C. Stephens's avatar Adam C. Stephens Committed by GitHub
Browse files

fractal: 11.1 -> 11.2 (#415912)

parents 8c4e95d2 c755f940
Loading
Loading
Loading
Loading
+9 −9
Original line number Diff line number Diff line
@@ -28,21 +28,21 @@
  glycin-loaders,
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
  pname = "fractal";
  version = "11.1";
  version = "11.2";

  src = fetchFromGitLab {
    domain = "gitlab.gnome.org";
    owner = "World";
    repo = "fractal";
    tag = version;
    hash = "sha256-G8vJvoOVVQ9cPnwoxNoKrQwGNxnA78HG285iSy6lSjk=";
    tag = finalAttrs.version;
    hash = "sha256-UE0TRC9DeP+fl85fzuQ8/3ioIPdeSqsJWnW1olB1gmo=";
  };

  cargoDeps = rustPlatform.fetchCargoVendor {
    inherit src;
    hash = "sha256-yxo1ZSOqjh2lrdmiCrKQGFHpSPRgye64rFNZpghZqI0=";
    inherit (finalAttrs) src;
    hash = "sha256-I+1pGZWxn9Q/CL8D6VxsaO3H4EdBek4wyykvNgCNRZI=";
  };

  patches = [
@@ -109,11 +109,11 @@ stdenv.mkDerivation rec {

  meta = {
    description = "Matrix group messaging app";
    homepage = "https://gitlab.gnome.org/GNOME/fractal";
    changelog = "https://gitlab.gnome.org/World/fractal/-/releases/${version}";
    homepage = "https://gitlab.gnome.org/World/fractal";
    changelog = "https://gitlab.gnome.org/World/fractal/-/releases/${finalAttrs.version}";
    license = lib.licenses.gpl3Plus;
    teams = [ lib.teams.gnome ];
    platforms = lib.platforms.linux;
    mainProgram = "fractal";
  };
}
})