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: 8debc01cb467
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3aec197197ea
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 7, 2018

  1. zathura-pdf-mupdf: 0.3.3 -> 0.3.4 (#49823)

    * zathura-pdf-mupdf: 0.3.3 -> 0.3.4
    
    Support for mupdf 1.14.
    
    * Update pkgs/applications/misc/zathura/pdf-mupdf/default.nix
    
    Co-Authored-By: Profpatsch <mail@profpatsch.de>
    Profpatsch authored Nov 7, 2018

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    3aec197 View commit details
Showing with 13 additions and 6 deletions.
  1. +13 −6 pkgs/applications/misc/zathura/pdf-mupdf/default.nix
19 changes: 13 additions & 6 deletions pkgs/applications/misc/zathura/pdf-mupdf/default.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
{ stdenv, lib, meson, ninja, fetchurl, pkgconfig, zathura_core, cairo,
gtk-mac-integration, girara, mupdf }:
{ stdenv, lib, meson, ninja, fetchurl, fetchFromGitHub
, pkgconfig, zathura_core, cairo , gtk-mac-integration, girara, mupdf }:

stdenv.mkDerivation rec {
version = "0.3.3";
version = "0.3.4";
name = "zathura-pdf-mupdf-${version}";

src = fetchurl {
url = "https://pwmt.org/projects/zathura-pdf-mupdf/download/${name}.tar.xz";
sha256 = "1zbdqimav4wfgimpy3nfzl10qj7vyv23rdy2z5z7z93jwbp2rc2j";
# pwmt.org server was down at the time of last update
# src = fetchurl {
# url = "https://pwmt.org/projects/zathura-pdf-mupdf/download/${name}.tar.xz";
# sha256 = "1zbaqimav4wfgimpy3nfzl10qj7vyv23rdy2z5z7z93jwbp2rc2j";
# };
src = fetchFromGitHub {
owner = "pwmt";
repo = "zathura-pdf-mupdf";
rev = version;
sha256 = "1m4w4jrybpjmx6pi33a5saxzmfd8rrym2k13jpd1fv543s17d9dy";
};

nativeBuildInputs = [ meson ninja pkgconfig ];