mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
cairo: 1.15.10 -> 1.15.12
The previous 1.15.10 (and the stable 1.14.12) have the bug https://bugs.freedesktop.org/show_bug.cgi?id=104325 which breaks perlPackages.Cairo and pythonPackages.cairocffi tests.
This commit is contained in:
parent
c315d45fda
commit
ef695239a0
1 changed files with 2 additions and 2 deletions
|
@ -10,14 +10,14 @@
|
|||
assert glSupport -> libGL != null;
|
||||
|
||||
let
|
||||
version = "1.15.10";
|
||||
version = "1.15.12";
|
||||
inherit (stdenv.lib) optional optionals;
|
||||
in stdenv.mkDerivation rec {
|
||||
name = "cairo-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://cairographics.org/${if stdenv.lib.mod (builtins.fromJSON (stdenv.lib.versions.minor version)) 2 == 0 then "releases" else "snapshots"}/${name}.tar.xz";
|
||||
sha256 = "14l3jll98pjdlpm8f972v0spzcsf6y5nz85y2k8iybyg6ihj5jk2";
|
||||
sha256 = "1jcl0mnqq6j2xip8p506g2cj54sfycm339rrd3p4g2jljhdhh8vn";
|
||||
};
|
||||
|
||||
outputs = [ "out" "dev" "devdoc" ];
|
||||
|
|
Loading…
Reference in a new issue