-
-
Save meditans/8ce219bfce798f81c7bc1c0c2ccc1f2e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Point to an older version of zlib | |
self: super: { | |
zlibOld = super.zlib.overrideAttrs (oa: rec { | |
name = "zlib-${version}"; | |
version = "1.2.9"; | |
src = super.fetchurl { | |
urls = | |
[ "https://www.zlib.net/fossils/${name}.tar.gz" # stable archive path | |
"mirror://sourceforge/libpng/zlib/${version}/${name}.tar.gz" | |
]; | |
sha256 = "08dabvnaqis3jlhyzwvh0dmz4lsq5zsmdbyjjm4fgl8yycp31avk"; | |
}; | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment