Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 847de99970d0
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f5859e62e533
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on May 26, 2020

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    veehaitch Vincent Haupert
    Copy the full SHA
    915c2ce View commit details

Commits on May 28, 2020

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    veehaitch Vincent Haupert
    Copy the full SHA
    0746135 View commit details
  2. Copy the full SHA
    f5859e6 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/applications/misc/joplin-desktop/default.nix
6 changes: 3 additions & 3 deletions pkgs/applications/misc/joplin-desktop/default.nix
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

let
pname = "joplin-desktop";
version = "1.0.201";
version = "1.0.216";
desktopItem = makeDesktopItem {
name = "Joplin";
exec = "joplin-desktop";
@@ -13,7 +13,7 @@ in appimageTools.wrapType2 rec {
name = "${pname}-${version}";
src = fetchurl {
url = "https://github.com/laurent22/joplin/releases/download/v${version}/Joplin-${version}.AppImage";
sha256 = "060dkgamsv59vgslqyjfh1g8wg3nldrvfb9lf0y9sxjlbsv8bc55";
sha256 = "17rb7h98h9i2p5kw5gznx5swpz6yxqdxwc9x5cgbkc31vk10iszn";
};


@@ -42,7 +42,7 @@ in appimageTools.wrapType2 rec {
'';
homepage = "https://joplinapp.org";
license = licenses.mit;
maintainers = with maintainers; [ hugoreeves rafaelgg raquelgb ];
maintainers = with maintainers; [ hugoreeves ];
platforms = [ "x86_64-linux" ];
};
}