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: ffd35a7849f6
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 74410d4ecd4e
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 10, 2018

  1. typora: 0.9.38 -> 0.9.41

    jensbin committed Jan 10, 2018
    Copy the full SHA
    49caf31 View commit details
  2. Merge pull request #33701 from jensbin/typora_0.9.41

    typora: 0.9.38 -> 0.9.41
    adisbladis authored Jan 10, 2018
    Copy the full SHA
    74410d4 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/applications/editors/typora/default.nix
6 changes: 3 additions & 3 deletions pkgs/applications/editors/typora/default.nix
Original file line number Diff line number Diff line change
@@ -3,18 +3,18 @@

stdenv.mkDerivation rec {
name = "typora-${version}";
version = "0.9.38";
version = "0.9.41";

src =
if stdenv.system == "x86_64-linux" then
fetchurl {
url = "https://www.typora.io/linux/typora_${version}_amd64.deb";
sha256 = "bf6a069c5da4a7dc289bdb3c8d27e7a81daeaee99488d4d3b512c6b673780557";
sha256 = "e4916f86c7c12aec8fd59b3ef79c2a4d3f77b02a0a9e962916c688871c9fda1d";
}
else
fetchurl {
url = "https://www.typora.io/linux/typora_${version}_i386.deb";
sha256 = "edd092e96ebf69503cf6b39b77a61ec5e3185f8a1447da0bed063fa11861c1b9";
sha256 = "18960fb4b2cd6cf9cb77025a4035a3258f1599b1d225fb673b49c1588fa272d6";
}
;