Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

podofo: 0.9.6 -> 0.9.7

ajs124 3b2773da 25174d14

+5 -14
+4 -13
pkgs/development/libraries/podofo/default.nix
··· 1 { lib, stdenv, fetchurl, cmake, zlib, freetype, libjpeg, libtiff, fontconfig 2 - , openssl, libpng, lua5, pkg-config, libidn, expat, fetchpatch 3 }: 4 5 stdenv.mkDerivation rec { 6 - version = "0.9.6"; 7 pname = "podofo"; 8 9 src = fetchurl { 10 url = "mirror://sourceforge/podofo/${pname}-${version}.tar.gz"; 11 - sha256 = "0wj0y4zcmj4q79wrn3vv3xq4bb0vhhxs8yifafwy9f2sjm83c5p9"; 12 }; 13 - 14 - patches = [ 15 - # https://sourceforge.net/p/podofo/tickets/24/ 16 - (fetchpatch { 17 - url = "https://sourceforge.net/p/podofo/tickets/24/attachment/podofo-cmake-3.12.patch"; 18 - extraPrefix = ""; 19 - sha256 = "087h51x60zrakzx09baan77hwz99cwb5l1j802r5g4wj7pbjz0mb"; 20 - }) 21 - ]; 22 23 outputs = [ "out" "dev" "lib" ]; 24 ··· 41 homepage = "http://podofo.sourceforge.net"; 42 description = "A library to work with the PDF file format"; 43 platforms = platforms.all; 44 - license = with licenses; [ gpl2 lgpl2 ]; 45 }; 46 }
··· 1 { lib, stdenv, fetchurl, cmake, zlib, freetype, libjpeg, libtiff, fontconfig 2 + , openssl, libpng, lua5, pkg-config, libidn, expat 3 }: 4 5 stdenv.mkDerivation rec { 6 + version = "0.9.7"; 7 pname = "podofo"; 8 9 src = fetchurl { 10 url = "mirror://sourceforge/podofo/${pname}-${version}.tar.gz"; 11 + sha256 = "1f0yvkx6nf99fp741w2y706d8bs9824x1z2gqm3rdy5fv8bfgwkw"; 12 }; 13 14 outputs = [ "out" "dev" "lib" ]; 15 ··· 32 homepage = "http://podofo.sourceforge.net"; 33 description = "A library to work with the PDF file format"; 34 platforms = platforms.all; 35 + license = with licenses; [ gpl2Plus lgpl2Plus ]; 36 }; 37 }
+1 -1
pkgs/top-level/all-packages.nix
··· 16197 16198 poco = callPackage ../development/libraries/poco { }; 16199 16200 - podofo = callPackage ../development/libraries/podofo { lua5 = lua5_1; }; 16201 16202 polkit = callPackage ../development/libraries/polkit { }; 16203
··· 16197 16198 poco = callPackage ../development/libraries/poco { }; 16199 16200 + podofo = callPackage ../development/libraries/podofo { }; 16201 16202 polkit = callPackage ../development/libraries/polkit { }; 16203