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

vikunja, vikunja-desktop: 2.0.0 -> 2.1.0 (#494837)

parents 20c3a10a 6a43370a
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -15,12 +15,12 @@

let
  executableName = "vikunja-desktop";
  version = "2.0.0";
  version = "2.1.0";
  src = fetchFromGitHub {
    owner = "go-vikunja";
    repo = "vikunja";
    rev = "v${version}";
    hash = "sha256-EfAhJq2LPuCF8Pwyg0TYqSjNCaG15iZ2paDLfA6JI5w=";
    hash = "sha256-R9PNhH5s3W9c1qHYmV9H5CkBvUtUFU+yzF+eEU2ybdo=";
  };
in
stdenv.mkDerivation (finalAttrs: {
@@ -40,7 +40,7 @@ stdenv.mkDerivation (finalAttrs: {
      pnpmInstallFlags
      ;
    fetcherVersion = 1;
    hash = "sha256-9KPQaRLep4n+2b9mk8KQoK22zdlMFrCb1VT6SEHxanQ=";
    hash = "sha256-yiVlEr1gi2g3m+hkYfDv6qd/wRlwwknM6lAaIeR58Ok=";
  };

  env = {
+8 −5
Original line number Diff line number Diff line
@@ -14,12 +14,12 @@
}:

let
  version = "2.0.0";
  version = "2.1.0";
  src = fetchFromGitHub {
    owner = "go-vikunja";
    repo = "vikunja";
    rev = "v${version}";
    hash = "sha256-EfAhJq2LPuCF8Pwyg0TYqSjNCaG15iZ2paDLfA6JI5w=";
    hash = "sha256-R9PNhH5s3W9c1qHYmV9H5CkBvUtUFU+yzF+eEU2ybdo=";
  };

  frontend = stdenv.mkDerivation (finalAttrs: {
@@ -37,7 +37,7 @@ let
        ;
      pnpm = pnpm_10;
      fetcherVersion = 1;
      hash = "sha256-ME9sGKGRY3vaOTFwbFyzsDT20HnEnrfq3Z5nrL19k0A=";
      hash = "sha256-oY8DXJFFwLBjUno3EithLhmnA8hTksq4xgMSSOGtwuo=";
    };

    nativeBuildInputs = [
@@ -142,11 +142,14 @@ buildGoModule {
  };

  meta = {
    changelog = "https://kolaente.dev/vikunja/api/src/tag/v${version}/CHANGELOG.md";
    changelog = "https://github.com/go-vikunja/vikunja/blob/v${version}/CHANGELOG.md";
    description = "Todo-app to organize your life";
    homepage = "https://vikunja.io/";
    license = lib.licenses.agpl3Plus;
    maintainers = with lib.maintainers; [ leona ];
    maintainers = with lib.maintainers; [
      leona
      adamcstephens
    ];
    mainProgram = "vikunja";
    platforms = lib.platforms.linux;
  };